mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-16 06:38:03 +08:00
Reduce window size for native applications to 800x600
This commit is contained in:
committed by
Keavon Chambers
parent
d0722f6985
commit
e03da35a83
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user