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

Commit bc07ebb9 authored by Jorim Jaggi's avatar Jorim Jaggi Committed by Android (Google) Code Review
Browse files

Merge "Fix Keyguard crash when in landscape." into lmp-preview-dev

parents 53f391c4 6a247199
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -475,7 +475,8 @@ public class KeyguardPatternView extends LinearLayout implements KeyguardSecurit
            interpolator, null);

            // And the forgot pattern button
            if (mForgotPatternButton.getVisibility() == View.VISIBLE) {
            if (mForgotPatternButton != null
                    && mForgotPatternButton.getVisibility() == View.VISIBLE) {
                mAppearAnimationUtils.createAnimation(mForgotPatternButton, delay, duration,
                        startTranslationY, interpolator, null);
            }