menu: handle external links, force open new windows

This commit is contained in:
dragonwocky 2021-12-05 17:54:29 +11:00
parent 2732d00825
commit 3b787c1aa4
Signed by: dragonwocky
GPG Key ID: 86DFC3C312A56010
3 changed files with 8 additions and 3 deletions

@ -1 +1 @@
Subproject commit f6ba894c4ffe737aafd487013a46a589ee09fbac
Subproject commit 02d4357c85075bfbb3ddbb7fa0fde3600ee5cb60

@ -1 +1 @@
Subproject commit 6ab30139be95bca0d3cffdb8d5127da36624bab4
Subproject commit 8eb2810a1bedb96ea82e20dadefdcd328b6978f9

View File

@ -49,6 +49,11 @@ module.exports.focusMenu = async () => {
appQuit = true;
});
enhancerMenu.webContents.on('new-window', (e, url) => {
e.preventDefault();
require('electron').shell.openExternal(url);
});
const trayID = 'f96f4a73-21af-4e3f-a68f-ab4976b020da',
runInBackground =
(await registry.enabled(trayID)) &&
@ -67,7 +72,7 @@ module.exports.focusNotion = () => {
{ BrowserWindow } = require('electron'),
{ createWindow } = env.notionRequire('main/createWindow.js');
let window = BrowserWindow.getAllWindows().find((win) => win.id !== enhancerMenu.id);
if (!window) window = createWindow();
if (!window) window = createWindow('', null, true);
window.show();
};