mirror of
https://github.com/dragonwocky/obsidian-tray.git
synced 2025-04-04 12:09:03 +00:00
fix: hide on launch after layout ready to prevent refocusing of minimised window
This commit is contained in:
parent
7f9ec58cfa
commit
fbce51895d
12
main.js
12
main.js
@ -238,8 +238,16 @@ class TrayPlugin extends obsidian.Plugin {
|
|||||||
setLaunchOnStartup(this);
|
setLaunchOnStartup(this);
|
||||||
if (settings.createTrayIcon) createTrayIcon(this);
|
if (settings.createTrayIcon) createTrayIcon(this);
|
||||||
if (settings.runInBackground) interceptWindowClose();
|
if (settings.runInBackground) interceptWindowClose();
|
||||||
// bug: obsidian will refocus/reshow self if minimised but not fully hidden
|
if (settings.hideOnLaunch) {
|
||||||
if (settings.hideOnLaunch) hideWindows(settings.runInBackground);
|
let _hidden;
|
||||||
|
this.registerEvent(
|
||||||
|
this.app.workspace.onLayoutReady(() => {
|
||||||
|
if (_hidden) return;
|
||||||
|
_hidden = true;
|
||||||
|
hideWindows(settings.runInBackground);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
onunload() {
|
onunload() {
|
||||||
unregisterHotkey(this);
|
unregisterHotkey(this);
|
||||||
|
Loading…
Reference in New Issue
Block a user