From a0a4f36dbc93e07aeb03d72987ac3922a793cf8b Mon Sep 17 00:00:00 2001 From: Uggla Date: Wed, 8 May 2024 15:36:02 +0200 Subject: [PATCH] fix: Do not allow to resize window --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 8e27d57..b6a762f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -39,6 +39,7 @@ fn main() { .set(WindowPlugin { primary_window: Some(Window { title: "RockRun: Rose's Odyssey".to_string(), + resizable: false, resolution: WindowResolution::new(WINDOW_WIDTH, WINDOW_HEIGHT), ..default() }),