1
1
mirror of https://github.com/Eugeny/tabby.git synced 2025-01-02 23:45:45 +03:00

Merge pull request #5670 from mwz/quit-app-cmd-q-mac

This commit is contained in:
Eugeny 2022-02-07 16:31:35 +01:00 committed by GitHub
commit ce435056a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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