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

Commit f25b09f2 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: I89be4584f0db5ea3f439505a7f649a785633030b
parents 2bf162c0 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;
        }
    }