Skip to content

Commit 0f5d399

Browse files
1 parent 040f7c1 commit 0f5d399

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

datetimepicker-library/src/com/sleepbot/datetimepicker/time/RadialPickerLayout.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,8 +530,9 @@ public void setCurrentItemShowing(int index, boolean animate) {
530530
return;
531531
}
532532

533-
//NineOldDroids does not work in this case due to denepency recursion.
534-
animate = animate && Build.VERSION.SDK_INT >= 14;
533+
//NineOldDroids does not work in this case due to dependency recursion.
534+
//Don't animate on API 14
535+
animate = animate && Build.VERSION.SDK_INT > 14;
535536

536537
int lastIndex = getCurrentItemShowing();
537538
mCurrentItemShowing = index;

0 commit comments

Comments
 (0)