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:
dragonwocky 2023-08-23 23:17:51 +10:00
parent 096bb34d54
commit 77ce4bd54a
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8

10
main.js
View File

@ -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 = () => {