diff --git a/main.js b/main.js index 74440c0..7f7c461 100644 --- a/main.js +++ b/main.js @@ -1,5 +1,5 @@ /** - * obsidian-tray v0.3.4 + * obsidian-tray v0.3.5 * (c) 2023 dragonwocky (https://dragonwocky.me/) * (https://github.com/dragonwocky/obsidian-tray/) under the MIT license */ @@ -76,7 +76,10 @@ const vaultWindows = new Set(), showWindows = () => { log(LOG_SHOWING_WINDOWS); getWindows().forEach((win) => { - maximizedWindows.has(win) ? win.maximize() : win.show(); + if (maximizedWindows.has(win)) { + win.maximize(); + win.focus(); + } else win.show(); }); }, hideWindows = () => { diff --git a/manifest.json b/manifest.json index c8d2d49..b0f2f72 100644 --- a/manifest.json +++ b/manifest.json @@ -4,7 +4,7 @@ "author": "dragonwocky", "authorUrl": "https://dragonwocky.me/", "description": "Run Obsidian from the system tray for customisable window management & global quick notes", - "version": "0.3.4", + "version": "0.3.5", "isDesktopOnly": true, "minAppVersion": "1.0.0" }