config: ensure window is not destroyed
This commit is contained in:
parent
be9f15dc45
commit
120d1a5b16
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue