merge pull request #24 from Zarpyk/main

semi-addresses #22: will re-maximise windows automatically when minimised

however, only works when run in background is enabled and causes weird window flickering on minimisation
This commit is contained in:
Tom 2023-08-23 20:37:49 +10:00 committed by GitHub
commit 78e819cc45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

20
main.js
View File

@ -69,6 +69,21 @@ const childWindows = new Set(),
else showWindows();
};
let isMaximized = false;
const onMinimize = () => {
if (isMaximized) getCurrentWindow().maximize();
hideWindows();
}, interceptWindowMinimize = () => {
isMaximized = getCurrentWindow().isMaximized();
getCurrentWindow().on("maximize", () => {
isMaximized = true;
});
getCurrentWindow().on("unmaximize", () => {
isMaximized = false;
});
getCurrentWindow().on("minimize", onMinimize);
};
const onWindowClose = (event) => event.preventDefault(),
onWindowUnload = (event) => {
log(LOG_WINDOW_CLOSE);
@ -394,7 +409,10 @@ class TrayPlugin extends obsidian.Plugin {
setHideTaskbarIcon();
setLaunchOnStartup();
observeChildWindows();
if (settings.runInBackground) interceptWindowClose();
if (settings.runInBackground) {
interceptWindowMinimize();
interceptWindowClose();
}
if (settings.hideOnLaunch) {
this.registerEvent(this.app.workspace.onLayoutReady(hideWindows));
}