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

Commit c4504571 authored by Matt Pietal's avatar Matt Pietal
Browse files

On multi-user bouncer auth, animate sub views

Instead of the entire view, to make sure the background
color stays consistent.

Fixes: 338197784
Test: manual, look for black flicker on bottom of screen
Flag: EXEMPT bugfix
Change-Id: Idf066d937b565637cdda12ad50dcee3dce46796a
parent 2b6e889b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1097,7 +1097,8 @@ public class KeyguardSecurityContainer extends ConstraintLayout {
            int yTranslation = mResources.getDimensionPixelSize(R.dimen.disappear_y_translation);

            AnimatorSet anims = new AnimatorSet();
            ObjectAnimator yAnim = ObjectAnimator.ofFloat(mView, View.TRANSLATION_Y, yTranslation);
            ObjectAnimator yAnim = ObjectAnimator.ofFloat(mViewFlipper, View.TRANSLATION_Y,
                    yTranslation);
            ObjectAnimator alphaAnim = ObjectAnimator.ofFloat(mUserSwitcherViewGroup, View.ALPHA,
                    0f);