Fix cannot repoen in macOS

This commit is contained in:
kPherox 2019-04-05 19:49:18 +09:00
parent 8155baa07d
commit c524777505
No known key found for this signature in database
GPG Key ID: C04751C2BFA2F62D

View File

@ -1,4 +1,4 @@
'use strict';
var dir='file://' + __dirname;
var base=dir + '/view/';
// Electronのモジュール
@ -70,6 +70,12 @@ app.on('window-all-closed', function() {
app.quit();
}
});
// macOSでウィンドウを閉じた後に再度開けるようにする
app.on('activate', function() {
if (mainWindow == null) {
createWindow();
}
});
function createWindow() {
// メイン画面の表示。ウィンドウの幅、高さを指定できる