aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/xyz/brysonsteck
diff options
context:
space:
mode:
authorBryson Steck <brysonsteck@protonmail.com>2023-05-14 15:47:52 -0600
committerBryson Steck <brysonsteck@protonmail.com>2023-05-14 15:47:52 -0600
commitb7ef7feebb2a384fb6a18baf573d0d8a28cb8421 (patch)
treeb50bbb40b49f41e90bfb8f377e58d735b3837cde /app/src/main/kotlin/xyz/brysonsteck
parent0a74a95d02553fdb39976b22dcc42566a2ccbb44 (diff)
downloadServerCraft-b7ef7feebb2a384fb6a18baf573d0d8a28cb8421.tar
ServerCraft-b7ef7feebb2a384fb6a18baf573d0d8a28cb8421.tar.gz
ServerCraft-b7ef7feebb2a384fb6a18baf573d0d8a28cb8421.tar.bz2
still working on readme, fix dialog icons
Diffstat (limited to 'app/src/main/kotlin/xyz/brysonsteck')
-rw-r--r--app/src/main/kotlin/xyz/brysonsteck/servercraft/controllers/PrimaryController.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/kotlin/xyz/brysonsteck/servercraft/controllers/PrimaryController.kt b/app/src/main/kotlin/xyz/brysonsteck/servercraft/controllers/PrimaryController.kt
index dd795e2..cad547d 100644
--- a/app/src/main/kotlin/xyz/brysonsteck/servercraft/controllers/PrimaryController.kt
+++ b/app/src/main/kotlin/xyz/brysonsteck/servercraft/controllers/PrimaryController.kt
@@ -435,7 +435,7 @@ class PrimaryController {
var result = false
val resources = App().javaClass.getResource("icons/warning.png")
val dialog = Stage()
- dialog.icons.add(Image(this.javaClass.getResourceAsStream("app.png")))
+ dialog.icons.add(Image(App().javaClass.getResourceAsStream("app.png")))
dialog.setResizable(false)
dialog.initModality(Modality.APPLICATION_MODAL);
dialog.title = directory
@@ -504,7 +504,7 @@ class PrimaryController {
var result = false
val resources = App().javaClass.getResource("icons/$type.png")
val dialog = Stage()
- dialog.icons.add(Image(this.javaClass.getResourceAsStream("app.png")))
+ dialog.icons.add(Image(App().javaClass.getResourceAsStream("app.png")))
dialog.setResizable(false)
dialog.initModality(Modality.APPLICATION_MODAL);
dialog.title = directory