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

Commit 4d6e5315 authored by Jaewan Kim's avatar Jaewan Kim Committed by android-build-merger
Browse files

Merge "Fix recents row blinking when PIP is focused" into nyc-dev am: ccb85eb4 am: 220c39eb

am: a36a9ed9

* commit 'a36a9ed9':
  Fix recents row blinking when PIP is focused

Change-Id: Ib49eeed1f896ba7e8ce588656861f3646d965420
parents 14dc9341 a36a9ed9
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -52,7 +52,9 @@ public class RecentsRowFocusAnimationHolder {

        mFocusLoseAnimatorSet = new AnimatorSet();
        mFocusLoseAnimatorSet.playTogether(
                ObjectAnimator.ofFloat(mView, "alpha", dimAlpha),
                // Animation doesn't start from the current value (1f) sometimes,
                // so specify the desired initial value here.
                ObjectAnimator.ofFloat(mView, "alpha", 1f, dimAlpha),
                ObjectAnimator.ofFloat(mTitleView, "alpha", 0f));
        mFocusLoseAnimatorSet.setDuration(duration);
        mFocusLoseAnimatorSet.setInterpolator(Interpolators.FAST_OUT_SLOW_IN);