mirror of
https://github.com/dragonwocky/obsidian-tray.git
synced 2025-04-03 11:39:02 +00:00
partial fix #28: will quit obsidian if single vault is closed
however, causes dock to vanish if multiple vaults are open?
This commit is contained in:
parent
096bb34d54
commit
77ce4bd54a
10
main.js
10
main.js
@ -128,9 +128,13 @@ const setLaunchOnStartup = () => {
|
||||
unregisterHotkeys();
|
||||
allowWindowClose();
|
||||
destroyTray();
|
||||
for (const win of getWindows()) win.destroy();
|
||||
// force app quit if no windows remain on macos
|
||||
if (!BrowserWindow.getAllWindows().length) app.quit();
|
||||
const vaultWindows = getWindows(),
|
||||
obsidianWindows = BrowserWindow.getAllWindows();
|
||||
if (obsidianWindows.length === vaultWindows.length) {
|
||||
// quit app directly if only remaining windows are in the
|
||||
// current vault - necessary for successful quit on macos
|
||||
app.quit();
|
||||
} else vaultWindows.forEach((win) => win.destroy());
|
||||
};
|
||||
|
||||
const addQuickNote = () => {
|
||||
|
Loading…
Reference in New Issue
Block a user