mirror of
https://github.com/dragonwocky/obsidian-tray.git
synced 2025-04-03 11:39:02 +00:00
fix #16: disable toggle on macos menubar icon click
This commit is contained in:
parent
b62d8862ab
commit
fb15c25171
8
main.js
8
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 = () => {
|
||||
|
Loading…
Reference in New Issue
Block a user