mirror of
https://github.com/element-hq/element-web
synced 2024-11-25 10:45:51 +03:00
Fix close window behaviour on Macos
This commit is contained in:
parent
f3656c2792
commit
03887f9d1b
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue