Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 07e1b900 authored by George Mount's avatar George Mount Committed by Android (Google) Code Review
Browse files

Merge "Fix problem on Animator with a start delay."

parents 7638b1f3 2ed16ac6
Loading
Loading
Loading
Loading
+18 −19
Original line number Diff line number Diff line
@@ -1124,7 +1124,7 @@ public class ValueAnimator extends Animator {
        if (!mStartedDelay) {
            mStartedDelay = true;
            mDelayStartTime = currentTime;
        } else {
        }
        if (mPaused) {
            if (mPauseTime < 0) {
                mPauseTime = currentTime;
@@ -1145,7 +1145,6 @@ public class ValueAnimator extends Animator {
            mPlayingState = RUNNING;
            return true;
        }
        }
        return false;
    }