From cf2b28fd7458173162888778782ad3fa60f9c651 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 26 Feb 2025 13:27:30 +0100 Subject: Free proxy slots unconditionally in `AboutToWait` --- winit/src/program.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/winit/src/program.rs b/winit/src/program.rs index c57c0b1b..a1b8b579 100644 --- a/winit/src/program.rs +++ b/winit/src/program.rs @@ -989,6 +989,11 @@ async fn run_instance( } } event::Event::AboutToWait => { + if actions > 0 { + proxy.free_slots(actions); + actions = 0; + } + if events.is_empty() && messages.is_empty() && window_manager.is_idle() @@ -1105,11 +1110,6 @@ async fn run_instance( &mut window_manager, cached_interfaces, )); - - if actions > 0 { - proxy.free_slots(actions); - actions = 0; - } } if let Some(redraw_at) = window_manager.redraw_at() { -- cgit