From 8a9d2dc9140b93657d161846006d377a1e08390f Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Mon, 3 May 2021 11:06:22 -0500 Subject: [PATCH] Update Windows/macOS window size --- public/electron.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/electron.js b/public/electron.js index f17d8c1..95686f0 100644 --- a/public/electron.js +++ b/public/electron.js @@ -44,8 +44,8 @@ const UpgradeIPC = require('../src/renderer/ipc/UpgradeIPC'); const platform = os.platform(); const dimensions = { - height: platform === 'win32' ? 326 : platform === 'darwin' ? 322 : 400, - width: platform === 'win32' ? 468 : 628, + height: platform === "win32" || platform === "darwin" ? 420 : 400, + width: platform === "win32" ? 468 : 628 }; let isShutdown = false;