Adjust window dimensions

Since resizing freezes the window.
This commit is contained in:
Marshall Bowers 2023-09-29 21:55:34 -04:00
parent 43a1296150
commit f50a23accd

View file

@ -24,8 +24,8 @@ fn main() {
WindowOptions { WindowOptions {
bounds: WindowBounds::Fixed(Bounds { bounds: WindowBounds::Fixed(Bounds {
size: gpui3::Size { size: gpui3::Size {
width: 1400_f32.into(), width: 800_f32.into(),
height: 900_f32.into(), height: 600_f32.into(),
}, },
..Default::default() ..Default::default()
}), }),