feat: #13 use the vault name as tray icon tooltip (@hedonihilist)

This commit is contained in:
Tom 2023-04-11 15:53:16 +10:00 committed by GitHub
commit 16d577d67e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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));
};