From fb15c251718c5dd8dedaa0a31573f95f39fb88b8 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Wed, 23 Aug 2023 22:06:27 +1000 Subject: [PATCH] fix #16: disable toggle on macos menubar icon click --- main.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/main.js b/main.js index 305bf89..10ff9ce 100644 --- a/main.js +++ b/main.js @@ -193,7 +193,13 @@ const addQuickNote = () => { tray = new Tray(obsidianIcon); tray.setContextMenu(contextMenu); tray.setToolTip(replaceVaultName(plugin.settings.trayIconTooltip)); - tray.on("click", () => toggleWindows(false)); + tray.on("click", () => { + if (process.platform === "darwin") { + // macos does not register separate left/right click actions + // for menu items, icon should open menu w/out causing toggle + tray.popUpContextMenu(); + } else toggleWindows(false); + }); }; const registerHotkeys = () => {