From b113eb19f0d2aa0be8755f9934a65dd0d64adb5f Mon Sep 17 00:00:00 2001 From: Ken Powers Date: Fri, 17 Jan 2020 12:49:01 -0500 Subject: [PATCH] Increase minimum window width to 680px When we grew the left sidebar we neglected to increase the minimum window size to allow for context menus to show up in the timeline for attachments. --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 8fda06b3bc..479c799522 100644 --- a/main.js +++ b/main.js @@ -196,7 +196,7 @@ function captureClicks(window) { const DEFAULT_WIDTH = 800; const DEFAULT_HEIGHT = 610; -const MIN_WIDTH = 640; +const MIN_WIDTH = 680; const MIN_HEIGHT = 550; const BOUNDS_BUFFER = 100;