Merge pull request #11311 from vector-im/dbkr/hotfix_macos_151_2

Fix close window behaviour on Macos
This commit is contained in:
David Baker 2019-11-04 18:25:36 +00:00 committed by GitHub
commit 0401e86216
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)