aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/App.kt
diff options
context:
space:
mode:
authorBryson Steck <brysonsteck@protonmail.com>2023-05-14 13:37:55 -0600
committerBryson Steck <brysonsteck@protonmail.com>2023-05-14 13:37:55 -0600
commit8fbd006b494ce4c6ab284d9eeab8692195984151 (patch)
tree19ea906921c945dbb05656d3604d23d4c3d289da /app/src/main/kotlin/xyz/brysonsteck/serverfordummies/App.kt
parentefd5388d335f73351ab1bc40fcfdde30cb04c8e0 (diff)
downloadServerCraft-8fbd006b494ce4c6ab284d9eeab8692195984151.tar
ServerCraft-8fbd006b494ce4c6ab284d9eeab8692195984151.tar.gz
ServerCraft-8fbd006b494ce4c6ab284d9eeab8692195984151.tar.bz2
turns out it just doesnt work on linux, reverting and organizing
Diffstat (limited to 'app/src/main/kotlin/xyz/brysonsteck/serverfordummies/App.kt')
-rw-r--r--app/src/main/kotlin/xyz/brysonsteck/serverfordummies/App.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/App.kt b/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/App.kt
index 0a3cab9..3ff7c46 100644
--- a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/App.kt
+++ b/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/App.kt
@@ -15,7 +15,7 @@ class App : Application() {
override fun start(stage: Stage) {
var scene = Scene(loadFXML("primary"), 963.0, 713.0)
- stage.icons.add(Image(this.javaClass.getResourceAsStream("app-256x256.png")))
+ stage.icons.add(Image(this.javaClass.getResourceAsStream("app.png")))
stage.setResizable(false)
stage.title = "Server For Dummies"
stage.scene = scene