diff options
Diffstat (limited to 'components/script/animations.rs')
-rw-r--r-- | components/script/animations.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/animations.rs b/components/script/animations.rs index 0c3f1c68206..d8b80338851 100644 --- a/components/script/animations.rs +++ b/components/script/animations.rs @@ -55,6 +55,8 @@ impl Animations { ); } } + + Self::finish_running_animations(set, now, &mut update); } update } @@ -71,7 +73,6 @@ impl Animations { for set in sets.values_mut() { Self::handle_canceled_animations(set, now, &mut update); - Self::finish_running_animations(set, now, &mut update); Self::handle_new_animations(set, &mut update); } |