From d1d2ae825d976dc894fa6f37d9caac364bd0bb48 Mon Sep 17 00:00:00 2001 From: Avii Date: Wed, 25 Feb 2026 19:06:45 +0100 Subject: [PATCH] disable my window position --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 005572d..39d92ac 100644 --- a/src/main.rs +++ b/src/main.rs @@ -62,7 +62,7 @@ fn setup(mut commands: Commands, mut window: Query<&mut Window>) { window.title = "Kneeboard".to_string(); window.resolution = WindowResolution::new(550, 720); - window.position = WindowPosition::new(IVec2::new(2560 + 1280, 600)); + // window.position = WindowPosition::new(IVec2::new(2560 + 1280, 600)); window.present_mode = PresentMode::AutoNoVsync; window.fit_canvas_to_parent = false; window.prevent_default_event_handling = false;