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

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15340335

Change-Id: I10bb5475caad73feadcca07abb47209b79a60570
This commit is contained in:
Beverly Tai
2021-07-21 14:17:19 +00:00
committed by Automerger Merge Worker

View File

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