Merge "Don't forward touches to udfps if notification panel is expanding" into sc-dev

This commit is contained in:
Beverly Tai
2021-07-21 13:57:08 +00:00
committed by Android (Google) Code Review

View File

@@ -377,6 +377,9 @@ public class UdfpsKeyguardViewController extends UdfpsAnimationViewController<Ud
@Override
public boolean onTouch(MotionEvent event) {
if (mTransitionToFullShadeProgress != 0) {
return false;
}
return mUdfpsController.onTouch(event);
}