From f3c70072c14f88124fa912425187985267008a0d Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Wed, 16 Oct 2019 23:03:57 -0500 Subject: [PATCH] Adjust width for delete --- public/electron.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/electron.js b/public/electron.js index 548df1a..21e2f6a 100644 --- a/public/electron.js +++ b/public/electron.js @@ -36,7 +36,7 @@ const UpgradeIPC = require('../src/renderer/ipc/UpgradeIPC'); const dimensions = { height: ((os.platform() === 'darwin') ? 346 : 326), - width: 428 + ((os.platform() === 'win32') ? 40 : (os.platform() === 'darwin') ? 150 : 160), + width: 428 + ((os.platform() === 'win32') ? 40 : (os.platform() === 'darwin') ? 190 : 200), }; let isShutdown = false;