8000 Fixed: animation play count is wrong in iOS · hbcodeXCI/NativeScript@983571c · GitHub
[go: up one dir, main page]

Skip to content

Commit 983571c

Browse files
author
Tsvetan Raikov
committed
Fixed: animation play count is wrong in iOS
1 parent efe9ff9 commit 983571c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/animation/animation.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ export class Animation extends common.Animation implements definition.Animation
335335
repeatCount = FLT_MAX;
336336
}
337337
else {
338-
repeatCount = animation.iterations - 1;
338+
repeatCount = animation.iterations;
339339
}
340340
}
341341

0 commit comments

Comments
 (0)
0