work on making sure all the functions are accounted for

This commit is contained in:
Olivier Gagnon
2021-11-03 18:16:10 -04:00
parent 2578ea51c3
commit c5fb5155f3
124 changed files with 2775 additions and 2204 deletions

View File

@@ -5,7 +5,7 @@ function createWindow() {
const win = new BrowserWindow({
show: false,
webPreferences: {
devTools: true,
// devTools: true,
},
});
@@ -13,7 +13,7 @@ function createWindow() {
win.maximize();
win.loadFile("index.html");
win.show();
win.webContents.openDevTools();
// win.webContents.openDevTools();
globalShortcut.register("f5", function () {
win.loadFile("index.html");
});