mirror of
https://github.com/dragonwocky/obsidian-tray.git
synced 2025-04-04 03:59:03 +00:00
feat: #13 use the vault name as tray icon tooltip (@hedonihilist)
This commit is contained in:
commit
16d577d67e
2
main.js
2
main.js
@ -161,7 +161,7 @@ const addQuickNote = () => {
|
|||||||
]);
|
]);
|
||||||
tray = new Tray(obsidianIcon);
|
tray = new Tray(obsidianIcon);
|
||||||
tray.setContextMenu(contextMenu);
|
tray.setContextMenu(contextMenu);
|
||||||
tray.setToolTip("Obsidian");
|
tray.setToolTip(plugin.app.vault.getName() ?? "Obsidian");
|
||||||
tray.on("click", () => toggleWindows(false));
|
tray.on("click", () => toggleWindows(false));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user