Reduce window size for native applications to 800x600

This commit is contained in:
Dennis Kobert
2023-06-17 16:29:58 +02:00
committed by Keavon Chambers
parent d0722f6985
commit e03da35a83
2 changed files with 2 additions and 2 deletions

View File

@@ -109,7 +109,7 @@ impl ApplicationIo for WasmApplicationIo {
let event_loop = winit::event_loop::EventLoop::new();
let window = winit::window::WindowBuilder::new()
.with_title("Graphite")
.with_inner_size(winit::dpi::PhysicalSize::new(1920, 1080))
.with_inner_size(winit::dpi::PhysicalSize::new(800, 600))
.build(&event_loop)
.unwrap();
let window = Arc::new(window);