fix #16: disable toggle on macos menubar icon click

This commit is contained in:
dragonwocky 2023-08-23 22:06:27 +10:00
parent b62d8862ab
commit fb15c25171
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8

View File

@ -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 = () => {