mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
Disable resizable button
Why this button if there is not a scalable design?
This commit is contained in:
parent
830786614f
commit
35862d7c11
1 changed files with 3 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue