From e84082dc6de77f0fba757dd13d46e0701afb5734 Mon Sep 17 00:00:00 2001 From: Jim Ehrismann <40840436+jim-docker@users.noreply.github.com> Date: Fri, 18 Sep 2020 01:55:05 -0400 Subject: [PATCH] Reduce the main BrowserWindow minimum size (#916) Signed-off-by: Jim Ehrismann --- src/main/window-manager.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/window-manager.ts b/src/main/window-manager.ts index be5a95e47a..348d5bbd3f 100644 --- a/src/main/window-manager.ts +++ b/src/main/window-manager.ts @@ -23,8 +23,8 @@ export class WindowManager { this.mainView = new BrowserWindow({ x, y, width, height, show: false, - minWidth: 900, - minHeight: 760, + minWidth: 700, // accommodate 800 x 600 display minimum + minHeight: 500, // accommodate 800 x 600 display minimum titleBarStyle: "hidden", backgroundColor: "#1e2124", webPreferences: {