From 02b945f8d360c73c7030232eba129e6a2c99a23d Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Mon, 26 Jun 2017 12:12:18 -0700 Subject: [PATCH] Swap window width/height variables --- app/main/window-utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main/window-utils.js b/app/main/window-utils.js index 615b59cdf1..f18dacf69a 100644 --- a/app/main/window-utils.js +++ b/app/main/window-utils.js @@ -44,8 +44,8 @@ export function createWindow () { title: getAppName(), width: width || DEFAULT_WIDTH, height: height || DEFAULT_HEIGHT, - minHeight: MINIMUM_WIDTH, - minWidth: MINIMUM_HEIGHT, + minHeight: MINIMUM_HEIGHT, + minWidth: MINIMUM_WIDTH, acceptFirstMouse: true, icon: path.resolve(__dirname, 'static/icon.png'), webPreferences: {