mirror of
https://github.com/dragonwocky/obsidian-tray.git
synced 2025-04-03 11:39:02 +00:00
Merge 7900f7fc7d
into f4e827253d
This commit is contained in:
commit
2bccce55b2
11
main.js
11
main.js
@ -42,6 +42,17 @@ const obsidian = require("obsidian"),
|
||||
{ nativeImage, BrowserWindow } = require("electron").remote,
|
||||
{ getCurrentWindow, globalShortcut } = require("electron").remote;
|
||||
|
||||
app.on("second-instance", (e) => {
|
||||
const win2 = BrowserWindow.getAllWindows()[0];
|
||||
// prevents "flashing" (quick open->close Obsidian start window)
|
||||
win2.setOpacity(0.0);
|
||||
win2.once("ready-to-show", () => {
|
||||
win2.close();
|
||||
});
|
||||
getCurrentWindow().show();
|
||||
getCurrentWindow().focus();
|
||||
});
|
||||
|
||||
const vaultWindows = new Set(),
|
||||
maximizedWindows = new Set(),
|
||||
getWindows = () => [...vaultWindows],
|
||||
|
Loading…
Reference in New Issue
Block a user