From fbce51895df00033390fd26206257aed68b9e95b Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Sun, 9 Apr 2023 21:34:30 +1000 Subject: [PATCH] fix: hide on launch after layout ready to prevent refocusing of minimised window --- main.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index e1e7d30..677a1c0 100644 --- a/main.js +++ b/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);