Fix close window behaviour on Macos

pull/11311/head
Michael Telatynski 2019-11-04 18:02:33 +00:00 committed by David Baker
parent 7a7ea8c7f6
commit fbd5ffc198
1 changed files with 1 additions and 1 deletions

View File

@ -393,7 +393,7 @@ app.on('ready', () => {
});
mainWindow.on('close', (e) => {
// If we are not quitting and have a tray icon then minimize to tray
if (!global.appQuitting && tray.hasTray()) {
if (!global.appQuitting && (tray.hasTray() || process.platform === 'darwin')) {
// On Mac, closing the window just hides it
// (this is generally how single-window Mac apps
// behave, eg. Mail.app)