Reduce minimum window size to 300px by 200px

This commit is contained in:
Scott Nonnenberg 2022-09-22 09:43:36 -07:00 committed by GitHub
parent 89b5768775
commit 3e27bc091a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -555,12 +555,13 @@ function handleCommonWindowEvents(
const DEFAULT_WIDTH = enableCI ? 1024 : 800; const DEFAULT_WIDTH = enableCI ? 1024 : 800;
const DEFAULT_HEIGHT = enableCI ? 1024 : 610; const DEFAULT_HEIGHT = enableCI ? 1024 : 610;
// LARGEST_LEFT_PANE_WIDTH = 380
// TIMELINE_WIDTH = 300 // We allow for smaller sizes because folks with OS-level zoom and HighDPI/Large Text
// TIMELINE_MARGIN = 16 + 16 // can really cause weirdness around window pixel-sizes. The app is very broken if you
// 712 = LARGEST_LEFT_PANE_WIDTH + TIMELINE_WIDTH + TIMELINE_MARGIN // make the window this small and do nothing else. But if you zoom out and collapse the
const MIN_WIDTH = 712; // left pane, even this window size can work!
const MIN_HEIGHT = 550; const MIN_WIDTH = 300;
const MIN_HEIGHT = 200;
const BOUNDS_BUFFER = 100; const BOUNDS_BUFFER = 100;
type BoundsType = { type BoundsType = {