We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5397176 commit dba500bCopy full SHA for dba500b
masonry/src/lib.rs
@@ -251,6 +251,11 @@ impl<Driver: AppDriver> MasonryViewPeer<Driver> {
251
self.state
252
.render_root
253
.handle_window_event(WindowEvent::AnimFrame(elapsed));
254
+
255
+ // Make sure we handle any signals emitted in response to the
256
+ // `AnimFrame` event before we redraw.
257
+ self.handle_signals(ctx);
258
259
// If this animation will continue, store the time.
260
// If a new animation starts, then it will have zero reported elapsed time.
261
let animation_continues = self.state.render_root.needs_anim();
0 commit comments