# Objective Fixes #17488 ## Solution The world update logic happened in the the `about_to_wait` winit window callback, but this is is not correct as (1) the winit documentation states that the callback should not be used for that purpose and (2) the callback is not fired when the window is resized or being dragged. However, that callback was used in #11245 to fix an iOS bug (which caused the regression). The solution presented here is a workaround until the event loop code can be re-written. ## Testing I confirmed that the `eased_motion` example continued to be animated when dragging or resizing the window. https://github.com/user-attachments/assets/ffaf0abf-4cd7-479b-83e9-e1850aaf3513 |
||
|---|---|---|
| .. | ||
| accessibility.rs | ||
| converters.rs | ||
| cursor.rs | ||
| lib.rs | ||
| state.rs | ||
| system.rs | ||
| winit_config.rs | ||
| winit_monitors.rs | ||
| winit_windows.rs | ||