mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-23 09:01:08 +03:00
Merge pull request #36 from yaroslav4167/patch-1
Disable resizable button
This commit is contained in:
commit
82858575c7
1 changed files with 3 additions and 0 deletions
|
@ -10,6 +10,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