diff options
Diffstat (limited to 'components/layout/animation.rs')
-rw-r--r-- | components/layout/animation.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/layout/animation.rs b/components/layout/animation.rs index 863b1eb325a..99d257f38a4 100644 --- a/components/layout/animation.rs +++ b/components/layout/animation.rs @@ -136,5 +136,7 @@ pub fn recalc_style_for_animations(flow: &mut Flow, pub fn tick_all_animations(layout_task: &LayoutTask, rw_data: &mut LayoutTaskData) { layout_task.tick_animations(rw_data); - layout_task.script_chan.send(ConstellationControlMsg::TickAllAnimations(layout_task.id)).unwrap(); + layout_task.script_chan + .send(ConstellationControlMsg::TickAllAnimations(layout_task.id)) + .unwrap(); } |