fix: do not call apply on animation after last step
1 files changed, 4 insertions(+), 1 deletions(-) M src/animations/animation_manager.rs
M src/animations/animation_manager.rs => src/animations/animation_manager.rs +4 -1
@@ 44,7 44,10 @@ impl<Timer: CountDown<Time=MicrosDurationU64>> AnimationManager<Timer> { } else { return Err(WouldBlock); }; - animation.apply(map)?; + + if !step_result.is_err() { + animation.apply(map)?; + } } let step = match step_result {