From 983571c6dea2d629647c818c88725dc25e744880 Mon Sep 17 00:00:00 2001 From: Tsvetan Raikov Date: Wed, 13 Apr 2016 19:09:05 +0300 Subject: [PATCH] Fixed: animation play count is wrong in iOS --- ui/animation/animation.ios.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/animation/animation.ios.ts b/ui/animation/animation.ios.ts index 9be7674be..c69e01718 100644 --- a/ui/animation/animation.ios.ts +++ b/ui/animation/animation.ios.ts @@ -335,7 +335,7 @@ export class Animation extends common.Animation implements definition.Animation repeatCount = FLT_MAX; } else { - repeatCount = animation.iterations - 1; + repeatCount = animation.iterations; } }