fixes #1006 Through close event when platform is darwin

This commit is contained in:
AkiraFukushima 2019-08-22 19:56:13 +09:00
parent 4fe6949255
commit 5c36b47f23
1 changed files with 7 additions and 7 deletions

View File

@ -251,14 +251,14 @@ async function createWindow() {
mainWindow!.setSkipTaskbar(false)
}
})
}
// Minimize to tray
mainWindow!.on('close', event => {
mainWindow!.hide()
mainWindow!.setSkipTaskbar(true)
event.preventDefault()
})
// Minimize to tray
mainWindow!.on('close', event => {
mainWindow!.hide()
mainWindow!.setSkipTaskbar(true)
event.preventDefault()
})
}
}
// Do not lower the rendering priority of Chromium when background