aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/animation.rs
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2015-09-10 14:17:35 -0700
committerPatrick Walton <pcwalton@mimiga.net>2015-09-27 15:38:22 -0700
commit1892b27daff1ce82869cb7470b8bf9fd8720d98f (patch)
treec6f6b4763e16b1fc8c498cb2c7dd4cb3d9f2b058 /components/layout/animation.rs
parent9bb6acd69083bc7321b9751afa54f0bce608bb86 (diff)
downloadservo-1892b27daff1ce82869cb7470b8bf9fd8720d98f.tar.gz
servo-1892b27daff1ce82869cb7470b8bf9fd8720d98f.zip
layout: Do a couple of minor style cleanups.
Diffstat (limited to 'components/layout/animation.rs')
-rw-r--r--components/layout/animation.rs4
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();
}