mirror of
https://github.com/Eugeny/tabby
synced 2024-12-14 15:22:40 +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.on('window-all-closed', () => null)
|
||||||
app.quit()
|
|
||||||
})
|
|
||||||
|
|
||||||
process.on('uncaughtException' as any, err => {
|
process.on('uncaughtException' as any, err => {
|
||||||
console.log(err)
|
console.log(err)
|
||||||
|
|
Loading…
Reference in a new issue