Fixed app quitting after unlock on linux.

pull/101/head
Mikunj 6 years ago
parent a1275ab911
commit 35c8f32461

@ -479,7 +479,11 @@ function showPasswordWindow() {
}
passwordWindow.readyForShutdown = true;
app.quit();
// Quit the app if we don't have a main window
if (!mainWindow) {
app.quit();
}
});
passwordWindow.on('closed', () => {

Loading…
Cancel
Save