From 35862d7c11c4fb26c01086f308869ad7493a6a5e Mon Sep 17 00:00:00 2001 From: Yaroslavik Date: Thu, 18 Oct 2018 18:20:04 +0200 Subject: [PATCH] Disable resizable button Why this button if there is not a scalable design? --- Launcher/runtime/init.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Launcher/runtime/init.js b/Launcher/runtime/init.js index 0e0e236b..caa2214d 100644 --- a/Launcher/runtime/init.js +++ b/Launcher/runtime/init.js @@ -14,6 +14,9 @@ var LauncherApp = Java.extend(JSApplication, { }, start: function(primaryStage) { stage = primaryStage; stage.setTitle(config.title); + + // Disable resizable button + stage.setResizable(false); // Set icons for each (var icon in config.icons) {