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.
This commit is contained in:
Ken Powers 2020-01-17 12:49:01 -05:00 committed by Scott Nonnenberg
parent 83fd2be1a7
commit b113eb19f0

View file

@ -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;