diff options
Diffstat (limited to 'components/layout/css/matching.rs')
-rw-r--r-- | components/layout/css/matching.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/css/matching.rs b/components/layout/css/matching.rs index db14af662ec..7a0e1ba969f 100644 --- a/components/layout/css/matching.rs +++ b/components/layout/css/matching.rs @@ -448,7 +448,7 @@ impl<'ln> PrivateMatchMethods for LayoutNode<'ln> { let this_opaque = self.opaque(); if let Some(ref animations) = layout_context.running_animations.get(&this_opaque) { for animation in *animations { - animation.property_animation.update(&mut *Arc::make_unique(style), 1.0); + animation.property_animation.update(&mut *Arc::make_mut(style), 1.0); } } } |