mirror of
https://github.com/dragonwocky/obsidian-tray.git
synced 2025-04-03 11:39:02 +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);
|
||||
if (settings.createTrayIcon) createTrayIcon(this);
|
||||
if (settings.runInBackground) interceptWindowClose();
|
||||
// bug: obsidian will refocus/reshow self if minimised but not fully hidden
|
||||
if (settings.hideOnLaunch) hideWindows(settings.runInBackground);
|
||||
if (settings.hideOnLaunch) {
|
||||
let _hidden;
|
||||
this.registerEvent(
|
||||
this.app.workspace.onLayoutReady(() => {
|
||||
if (_hidden) return;
|
||||
_hidden = true;
|
||||
hideWindows(settings.runInBackground);
|
||||
})
|
||||
);
|
||||
}
|
||||
}
|
||||
onunload() {
|
||||
unregisterHotkey(this);
|
||||
|
Loading…
Reference in New Issue
Block a user