mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
fix open duplicate notion windows when click dock notion icon on macos bigsur (#487)
This commit is contained in:
parent
b1b1a1b725
commit
895334c640
@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
module.exports = (store, __exports) => {
|
module.exports = (store, __exports) => {
|
||||||
const electron = require('electron'),
|
const electron = require('electron'),
|
||||||
|
is_mac = process.platform === 'darwin',
|
||||||
allWindows = () =>
|
allWindows = () =>
|
||||||
electron.BrowserWindow.getAllWindows().filter(
|
electron.BrowserWindow.getAllWindows().filter(
|
||||||
(win) => win.getTitle() !== 'notion-enhancer menu'
|
(win) => win.getTitle() !== 'notion-enhancer menu'
|
||||||
@ -17,7 +18,7 @@ module.exports = (store, __exports) => {
|
|||||||
path = require('path'),
|
path = require('path'),
|
||||||
helpers = require('../../pkg/helpers.js');
|
helpers = require('../../pkg/helpers.js');
|
||||||
|
|
||||||
__exports.createWindow = function (relativeUrl, focused_window) {
|
__exports.createWindow = function (relativeUrl, focused_window, force = false) {
|
||||||
if (!relativeUrl) relativeUrl = '';
|
if (!relativeUrl) relativeUrl = '';
|
||||||
const window_state = require(`${helpers
|
const window_state = require(`${helpers
|
||||||
.getNotionResources()
|
.getNotionResources()
|
||||||
@ -41,6 +42,12 @@ module.exports = (store, __exports) => {
|
|||||||
rect.width = focused_window.getSize()[0];
|
rect.width = focused_window.getSize()[0];
|
||||||
rect.height = focused_window.getSize()[1];
|
rect.height = focused_window.getSize()[1];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const windows = electron.BrowserWindow.getAllWindows();
|
||||||
|
if (is_mac && !force && windows.length) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
let window = new electron.BrowserWindow({
|
let window = new electron.BrowserWindow({
|
||||||
show: false,
|
show: false,
|
||||||
backgroundColor: '#ffffff',
|
backgroundColor: '#ffffff',
|
||||||
|
@ -164,7 +164,7 @@ module.exports = (store, __exports) => {
|
|||||||
intl.formatMessage(menuMessages.newWindow)
|
intl.formatMessage(menuMessages.newWindow)
|
||||||
),
|
),
|
||||||
accelerator: 'CmdOrCtrl+Shift+N',
|
accelerator: 'CmdOrCtrl+Shift+N',
|
||||||
click: () => createWindow.createWindow(),
|
click: () => createWindow.createWindow('', '', true),
|
||||||
},
|
},
|
||||||
...(tabsEnabled
|
...(tabsEnabled
|
||||||
? [
|
? [
|
||||||
|
Loading…
Reference in New Issue
Block a user