From b39ac9f44e71b7f35ccd3e89c1f678a29b3b190a Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 31 Mar 2020 17:36:51 +1100 Subject: [PATCH] Close the password window once mainwindow is focused password was closed to early and no windows were shown which triggered the app stop --- main.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/main.js b/main.js index a555c3b7c..e9393b221 100644 --- a/main.js +++ b/main.js @@ -346,6 +346,10 @@ async function createWindow() { mainWindow.on('focus', () => { mainWindow.flashFrame(false); + if (passwordWindow) { + passwordWindow.close(); + passwordWindow = null; + } }); if (config.environment === 'test') { @@ -1018,11 +1022,6 @@ ipc.on('password-window-login', async (event, passPhrase) => { const passwordAttempt = true; await showMainWindow(passPhrase, passwordAttempt); sendResponse(); - - if (passwordWindow) { - passwordWindow.close(); - passwordWindow = null; - } } catch (e) { const localisedError = locale.messages.invalidPassword.message; sendResponse(localisedError || 'Invalid password');