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

Commit 2d56123b authored by Mike Cleron's avatar Mike Cleron Committed by Android (Google) Code Review
Browse files

Merge "Fix lockscreen Bug: 5391404"

parents 3d0d7b41 b9a4b3c1
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -996,10 +996,14 @@ public class LockPatternKeyguardView extends KeyguardViewBase implements Handler
    public boolean handleMessage(Message msg) {
        switch (msg.what) {
        case MSG_SHOW_FACELOCK_AREA_VIEW:
            if (mFaceLockAreaView != null) {
                mFaceLockAreaView.setVisibility(View.VISIBLE);
            }
            break;
        case MSG_HIDE_FACELOCK_AREA_VIEW:
            if (mFaceLockAreaView != null) {
                mFaceLockAreaView.setVisibility(View.GONE);
            }
            break;
        default:
            Log.w(TAG, "Unhandled message");