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
|
@ -11,6 +11,9 @@ var LauncherApp = Java.extend(JSApplication, {
|
||||||
stage = primaryStage;
|
stage = primaryStage;
|
||||||
stage.setTitle(config.title);
|
stage.setTitle(config.title);
|
||||||
|
|
||||||
|
// Disable resizable button
|
||||||
|
stage.setResizable(false);
|
||||||
|
|
||||||
// Set icons
|
// Set icons
|
||||||
for each (var icon in config.icons) {
|
for each (var icon in config.icons) {
|
||||||
var iconURL = Launcher.getResourceURL(icon).toString();
|
var iconURL = Launcher.getResourceURL(icon).toString();
|
||||||
|
|
Loading…
Reference in a new issue