Skip to content

Commit 9a9bba9

Browse files
committed
fix #8
1 parent 76a2f30 commit 9a9bba9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/src/main/java/com/daimajia/androidanimations/library/attention/WobbleAnimator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ public void prepare(View target) {
3535
float width = target.getWidth();
3636
float one = (float)(width/100.0);
3737
getAnimatorAgent().playTogether(
38-
ObjectAnimator.ofFloat(target, "translationX", 0 * one, -25 * one, 20 * one, -15 * one, 10 * one, -5 * one, 0 * one),
39-
ObjectAnimator.ofFloat(target, "rotation", 0, -5, 3, -3, 2, -1)
38+
ObjectAnimator.ofFloat(target, "translationX", 0 * one, -25 * one, 20 * one, -15 * one, 10 * one, -5 * one, 0 * one,0),
39+
ObjectAnimator.ofFloat(target, "rotation", 0, -5, 3, -3, 2, -1,0)
4040
);
4141
}
4242
}

0 commit comments

Comments
 (0)