Change to quit when window all closed in macOS
This commit is contained in:
parent
44ccd111b2
commit
d933eef8cc
12
app/main.js
12
app/main.js
|
@ -99,16 +99,8 @@ function isFile(file) {
|
||||||
}
|
}
|
||||||
// 全てのウィンドウが閉じたら終了
|
// 全てのウィンドウが閉じたら終了
|
||||||
app.on('window-all-closed', function () {
|
app.on('window-all-closed', function () {
|
||||||
if (process.platform != 'darwin') {
|
electron.session.defaultSession.clearCache(() => { })
|
||||||
electron.session.defaultSession.clearCache(() => { })
|
app.quit();
|
||||||
app.quit();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
// macOSでウィンドウを閉じた後に再度開けるようにする
|
|
||||||
app.on('activate', function () {
|
|
||||||
if (mainWindow == null) {
|
|
||||||
createWindow();
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
function createWindow() {
|
function createWindow() {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user