mirror of
https://github.com/Eugeny/tabby.git
synced 2025-03-31 15:50:28 +08:00
Fix app not quitting completely on Cmd+Q (Mac)
This commit is contained in:
parent
f27f52dd72
commit
90f97d6669
@ -93,6 +93,10 @@ export class Application {
|
||||
app.commandLine.appendSwitch(flag[0], flag[1])
|
||||
}
|
||||
|
||||
app.on('before-quit', () => {
|
||||
this.quitRequested = true
|
||||
})
|
||||
|
||||
app.on('window-all-closed', () => {
|
||||
if (this.quitRequested || process.platform !== 'darwin') {
|
||||
app.quit()
|
||||
|
Loading…
x
Reference in New Issue
Block a user