Skip to content

Commit

Permalink
Dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuriy Budiyev committed Nov 30, 2017
1 parent dc2678e commit ee9b12f
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -613,9 +613,8 @@ public void onAnimationEnd(Animator animation) {
mIndeterminateOffsetAngle = (mIndeterminateOffsetAngle + mIndeterminateMinimumAngle * 2f) % 360f;
}
if (!mCancelled) {
ValueAnimator animator = mIndeterminateSweepAnimator;
if (animator != null) {
animator.start();
if (!animation.isRunning()) {
animation.start();
}
}
}
Expand Down

0 comments on commit ee9b12f

Please sign in to comment.