From f0c6a5d49fd028861483b56ab79a531bc1442de4 Mon Sep 17 00:00:00 2001 From: Hedonihilist Date: Tue, 11 Apr 2023 00:18:00 +0800 Subject: [PATCH] use the vault name as tray icon tooltip --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index e2425ac..fcc7c60 100644 --- a/main.js +++ b/main.js @@ -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)); };