Skip to content

Commit

Permalink
Revert "Fix app not quitting completely on Cmd+Q (Mac)"
Browse files Browse the repository at this point in the history
This reverts commit 9c53503.
  • Loading branch information
Eugeny committed Feb 12, 2022
1 parent c646549 commit 60a48ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lib/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export class Application {
}

app.on('window-all-closed', () => {
if (this.quitRequested) {
if (this.quitRequested || process.platform !== 'darwin') {
app.quit()
}
})
Expand Down

0 comments on commit 60a48ec

Please sign in to comment.