Double wait time until quit

On my modern Macbook 12" I've run into "Saving state took too long.
Quitting.". We have users with spinning disk drives, so let's be a bit
more generous.
This commit is contained in:
Feross Aboukhadijeh
2016-09-21 11:46:41 -07:00
parent 46e138a376
commit 167da9dfd5

View File

@@ -107,7 +107,7 @@ function init () {
setTimeout(() => {
console.error('Saving state took too long. Quitting.')
app.quit()
}, 2000) // quit after 2 secs, at most
}, 4000) // quit after 4 secs, at most
})
app.on('activate', function () {