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

Commit 2e2ed283 authored by Ilya Matyukhin's avatar Ilya Matyukhin Committed by Automerger Merge Worker
Browse files

Merge changes from topic "fix-isUdfps" into sc-dev am: 26e3ecaa

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

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I2f28073a9f6a675a103e94aaf02d4c250e8bb58c
parents 3b1a4950 26e3ecaa
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -109,9 +109,10 @@ public class FingerprintSensorPropertiesInternal extends SensorPropertiesInterna
            this.sensorLocationY = props[1];
            this.sensorRadius = props[2];
        } else {
            this.sensorLocationX = 0;
            this.sensorLocationY = 0;
            this.sensorRadius = 0;
            // Fake coordinates that could be used for the fake UDFPS mode.
            this.sensorLocationX = 540;
            this.sensorLocationY = 1636;
            this.sensorRadius = 130;
        }
    }