mirror of
https://github.com/dragonwocky/obsidian-tray.git
synced 2025-04-04 03:59:03 +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();
|
unregisterHotkeys();
|
||||||
allowWindowClose();
|
allowWindowClose();
|
||||||
destroyTray();
|
destroyTray();
|
||||||
for (const win of getWindows()) win.destroy();
|
const vaultWindows = getWindows(),
|
||||||
// force app quit if no windows remain on macos
|
obsidianWindows = BrowserWindow.getAllWindows();
|
||||||
if (!BrowserWindow.getAllWindows().length) app.quit();
|
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 = () => {
|
const addQuickNote = () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user