~ruther/map-led-strip

d8e7cb5329e8290f34eed57b5ff3037350ea273e — František Boháček 1 year, 9 months ago 9eb4d9b
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 {

Do not follow this link