From 0759019c8bb57287e81b4f35611d31483f8386fb Mon Sep 17 00:00:00 2001 From: Ryan Walters Date: Thu, 4 Sep 2025 13:25:51 -0500 Subject: [PATCH] fix: allow Window events, allows proper logical canvas resizing You have no idea how much pain this has been causing me. --- src/game.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.rs b/src/game.rs index 5a4d2f7..6863726 100644 --- a/src/game.rs +++ b/src/game.rs @@ -128,7 +128,7 @@ impl Game { EventType::TextInput, EventType::TextEditing, EventType::Display, - EventType::Window, + // EventType::Window, EventType::MouseWheel, // EventType::MouseMotion, // EventType::MouseButtonDown, // Enable for desktop touch testing