mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-08 08:58:38 +01:00
Closing the window hides the window on mac
Clicking the dock icon restores it again. // FREEBIE
This commit is contained in:
@@ -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();
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user