Fix cannot repoen in macOS
This commit is contained in:
parent
8155baa07d
commit
c524777505
|
@ -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() {
|
||||
// メイン画面の表示。ウィンドウの幅、高さを指定できる
|
||||
|
|
Loading…
Reference in New Issue
Block a user