Closing the window hides the window on mac

Clicking the dock icon restores it again.

// FREEBIE
This commit is contained in:
lilia 2017-04-22 15:58:50 -07:00 committed by Scott Nonnenberg
parent 7ef901d628
commit 44adc04395
No known key found for this signature in database
GPG Key ID: A4931C09644C654B
1 changed files with 13 additions and 1 deletions

14
main.js
View File

@ -113,6 +113,13 @@ function createWindow () {
}
})
// Emitted when the window is about to be closed.
mainWindow.on('close', function (e) {
if (!shouldQuit) {
e.preventDefault();
mainWindow.hide();
}
});
// Emitted when the window is closed.
mainWindow.on('closed', function () {
// Dereference the window object, usually you would store windows
@ -142,6 +149,9 @@ app.on('ready', function() {
createWindow();
})
app.on('before-quit', function() {
shouldQuit = true;
});
// Quit when all windows are closed.
app.on('window-all-closed', function () {
// On OS X it is common for applications and their menu bar
@ -155,7 +165,9 @@ app.on('activate', function () {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) {
createWindow()
createWindow();
} else {
mainWindow.show();
}
})