mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-13 03:32:13 +00:00
Update to fix main window maximizing from splash
The code checks whether the initial window starts maximized; If so, it prevents the splash from starting maximized and leaves the main window maximized.
This commit is contained in:
parent
1e84a1558f
commit
0809104052
1 changed files with 2 additions and 2 deletions
|
@ -74,7 +74,7 @@ export class WindowManager {
|
|||
this.splashWindow.removeMenu();
|
||||
if (this.splashWindow?.isMaximized()) {
|
||||
this.splashWindow?.unmaximize();
|
||||
this.isMainMaximize = true;
|
||||
this.isMainMaximized = true;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -127,7 +127,7 @@ export class WindowManager {
|
|||
this.isReadyToShowMainWindow = true;
|
||||
this.splashWindow?.close();
|
||||
this.createMainWindow();
|
||||
if (this.isMainMaximize) this.mainWindow?.maximize();
|
||||
if (this.isMainMaximized) this.mainWindow?.maximize();
|
||||
}
|
||||
|
||||
public static redirect(hash: string) {
|
||||
|
|
Loading…
Reference in a new issue