use the vault name as tray icon tooltip

This commit is contained in:
Hedonihilist 2023-04-11 00:18:00 +08:00
parent 4e097cca14
commit f0c6a5d49f

View File

@ -161,7 +161,7 @@ const addQuickNote = () => {
]);
tray = new Tray(obsidianIcon);
tray.setContextMenu(contextMenu);
tray.setToolTip("Obsidian");
tray.setToolTip(plugin.app.vault.getName() ?? "Obsidian");
tray.on("click", () => toggleWindows(false));
};