From 2876c6d5f9813d69820e013cc94c83f8e5eb8293 Mon Sep 17 00:00:00 2001 From: Quentin Legot Date: Sun, 26 Sep 2021 12:18:58 +0200 Subject: [PATCH] Prevent the "true" from appear on launch button --- src/client/assets/js/index.js | 2 +- src/server/main.js | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/client/assets/js/index.js b/src/client/assets/js/index.js index d9b35f9..d1d1f2a 100644 --- a/src/client/assets/js/index.js +++ b/src/client/assets/js/index.js @@ -96,7 +96,7 @@ ipcRenderer.on("close", (_e, _args) => { ipcRenderer.on('launch', (_e, _args) => { app.fullprogressbarHidden = true - app.loadingMessageText = true + app.loadingMessageHidden = true }) ipcRenderer.on("modsInformations", (e, args) => { diff --git a/src/server/main.js b/src/server/main.js index d480807..eec3520 100644 --- a/src/server/main.js +++ b/src/server/main.js @@ -27,8 +27,7 @@ function createWindow () { nodeIntegration: true, contextIsolation: false }, - frame: false, - nativeWindowOpen: true + frame: false }) Menu.setApplicationMenu(null) win.loadFile('src/client/login.html')