From 8ca422bfa5b96f314480fceea9994a642859919a Mon Sep 17 00:00:00 2001 From: Tom Kirkpatrick Date: Mon, 18 May 2020 13:52:10 +0200 Subject: [PATCH] fix(ui): update default window width to 950px --- electron/main.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/electron/main.js b/electron/main.js index f761433bc99..ae6fda95f3e 100644 --- a/electron/main.js +++ b/electron/main.js @@ -224,10 +224,10 @@ app.on('ready', async () => { show: false, useContentSize: true, titleBarStyle: 'hidden', - width: 900, + width: 950, height: 680, - minWidth: 900, - minHeight: 425, + minWidth: 950, + minHeight: 450, backgroundColor: get(theme, 'colors.primaryColor', '#242633'), icon: isDev ? path.resolve('resources', 'icon.png')