Compare commits

...

1 Commits

Author SHA1 Message Date
Mihai 2a48059186 fix: skip maximise if starting to tray
Signed-off-by: Mihai <cristian@mihaimuresan.com>
2026-03-06 14:48:17 +01:00
+1 -1
View File
@@ -79,7 +79,7 @@ export function createMainWindow() {
} }
// maximise the window if it was maximised before // maximise the window if it was maximised before
if (config.windowState.isMaximised) { if (config.windowState.isMaximised && !startHidden) {
mainWindow.maximize(); mainWindow.maximize();
} }