From 844a94226777e78553726c3d3e3798db7ea7107e Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Sat, 13 May 2023 15:19:18 -0600 Subject: fixed spinner editing and forced window size --- .../main/kotlin/xyz/brysonsteck/serverfordummies/App.kt | 1 + .../brysonsteck/serverfordummies/PrimaryController.kt | 6 ++++-- .../xyz/brysonsteck/serverfordummies/primary.fxml | 16 ++++++++-------- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/App.kt b/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/App.kt index a2c4bbd..8a00744 100644 --- a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/App.kt +++ b/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/App.kt @@ -15,6 +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.setResizable(false) stage.title = "Server For Dummies" stage.scene = scene stage.show() diff --git a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/PrimaryController.kt b/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/PrimaryController.kt index 3b5c9ff..4939a26 100644 --- a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/PrimaryController.kt +++ b/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/PrimaryController.kt @@ -412,7 +412,8 @@ class PrimaryController { private fun eulaDialog(): Boolean { var result = false val resources = this.javaClass.getResource("icons/warning.png") - val dialog = Stage(); + val dialog = Stage() + dialog.setResizable(false) dialog.initModality(Modality.APPLICATION_MODAL); dialog.title = directory val scenePane = Pane() @@ -470,7 +471,8 @@ class PrimaryController { private fun createDialog(type: String, msg: String, yes: String, no: String, hold: Boolean): Boolean { var result = false val resources = this.javaClass.getResource("icons/$type.png") - val dialog = Stage(); + val dialog = Stage() + dialog.setResizable(false) dialog.initModality(Modality.APPLICATION_MODAL); dialog.title = directory val scenePane = Pane() diff --git a/app/src/main/resources/xyz/brysonsteck/serverfordummies/primary.fxml b/app/src/main/resources/xyz/brysonsteck/serverfordummies/primary.fxml index a8c885b..063a2e2 100644 --- a/app/src/main/resources/xyz/brysonsteck/serverfordummies/primary.fxml +++ b/app/src/main/resources/xyz/brysonsteck/serverfordummies/primary.fxml @@ -104,7 +104,7 @@ - + @@ -128,13 +128,13 @@ - + - + @@ -170,7 +170,7 @@ - + @@ -180,7 +180,7 @@ - + @@ -195,7 +195,7 @@ - + -- cgit v1.2.3