config: ensure window is not destroyed

pull/140/head
CanadaHonk 1 year ago
parent be9f15dc45
commit 120d1a5b16

@ -6,14 +6,14 @@ ipcMain.on('DISCORD_UPDATED_QUOTES', (e, c) => {
let win;
exports.open = () => {
if (win) return win.show();
if (win && !win.isDestroyed()) return win.show();
win = require('../utils/win')({
width: 500,
height: 650
}, 'config');
win.on('close', () => {
win.on('closed', () => {
win = null;
});
@ -41,4 +41,4 @@ exports.open = () => {
ipcMain.on('of', () => {
shell.openPath(require('../paths').getUserData() + '/settings.json')
});
};
};
Loading…
Cancel
Save