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

Commit c64160c1 authored by Aaron Liu's avatar Aaron Liu Committed by Automerger Merge Worker
Browse files

Merge "Add null check for input view." into udc-dev am: e5cc0bf4

parents be1b1ab5 e5cc0bf4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -474,7 +474,8 @@ public class KeyguardSecurityContainer extends ConstraintLayout {
                    return false;
                }
                // Avoid dragging the pattern view
                if (mSecurityViewFlipper.getSecurityView().disallowInterceptTouch(event)) {
                if (mSecurityViewFlipper.getSecurityView() != null
                        && mSecurityViewFlipper.getSecurityView().disallowInterceptTouch(event)) {
                    return false;
                }
                int index = event.findPointerIndex(mActivePointerId);