Fix priority of redraw requests in winit shell

This commit is contained in:
Héctor Ramón Jiménez 2025-02-14 19:33:18 +01:00
parent a2b36e6551
commit cc8b326dfc
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -363,7 +363,7 @@ where
(
ControlFlow::WaitUntil(current),
ControlFlow::WaitUntil(new),
) if new < current => {}
) if current < new => {}
(
ControlFlow::WaitUntil(target),
ControlFlow::Wait,