mirror of
https://github.com/Eugeny/tabby
synced 2024-12-13 23:02:41 +00:00
macOS: don't exit when the last window is closed - fixes #4263
This commit is contained in:
parent
03045eb952
commit
8d5b0fe863
1 changed files with 1 additions and 3 deletions
|
@ -26,9 +26,7 @@ app.on('activate', () => {
|
|||
}
|
||||
})
|
||||
|
||||
app.on('window-all-closed', () => {
|
||||
app.quit()
|
||||
})
|
||||
app.on('window-all-closed', () => null)
|
||||
|
||||
process.on('uncaughtException' as any, err => {
|
||||
console.log(err)
|
||||
|
|
Loading…
Reference in a new issue