Merge "Update local value of sensorBounds whenever it changes" into udc-dev

This commit is contained in:
Chandru S
2023-06-07 00:14:52 +00:00
committed by Android (Google) Code Review

View File

@@ -102,6 +102,13 @@ public class UdfpsKeyguardViewLegacy extends UdfpsAnimationView {
return mFingerprintDrawable;
}
@Override
void onSensorRectUpdated(RectF bounds) {
super.onSensorRectUpdated(bounds);
bounds.round(this.mSensorBounds);
postInvalidate();
}
@Override
void onDisplayConfiguring() {
}