fix(win32): Wait longer before quitting if no windows are open

This commit is contained in:
Ben Gotow 2016-05-18 16:25:02 -07:00
parent a8f54c25df
commit 1999e11504

View file

@ -160,7 +160,7 @@ export default class WindowManager {
if (visibleWindows.length === 0 && noMainWindowLoaded) {
app.quit();
}
}, 10000);
}, 25000);
this.quitCheck();
}
}