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

Commit 9ff23b79 authored by Chandru S's avatar Chandru S Committed by Automerger Merge Worker
Browse files

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

Merge "Update local value of sensorBounds whenever it changes" into udc-dev am: cb4d5922 am: 7dd9af0e

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



Change-Id: Ibaf1b6abb42bbcc217fb92ea4097fc6ca64519e6
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents cc64f807 7dd9af0e
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -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() {
    }