1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-23 18:44:20 +03:00

Revert "Fix app not quitting completely on Cmd+Q (Mac)"

This reverts commit 9c53503c0f.
This commit is contained in:
Eugene Pankov 2022-02-12 10:03:49 +01:00
parent c64654991b
commit 60a48ec2a5
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -94,7 +94,7 @@ export class Application {
} }
app.on('window-all-closed', () => { app.on('window-all-closed', () => {
if (this.quitRequested) { if (this.quitRequested || process.platform !== 'darwin') {
app.quit() app.quit()
} }
}) })