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

Commit 2cc92f03 authored by Grace Cheng's avatar Grace Cheng Committed by Automerger Merge Worker
Browse files

Merge "Fix regression from ag/22534576" into udc-dev am: 1b25aefa am: 34f775cb

parents 7d5e4db2 34f775cb
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -31,6 +31,10 @@ open class AuthBiometricFingerprintView(
    context: Context,
    attrs: AttributeSet? = null
) : AuthBiometricView(context, attrs) {
    /** If this view is for a SFPS sensor.  */
    var isSfps = false
        private set

    /** If this view is for a UDFPS sensor.  */
    var isUdfps = false
        private set
@@ -40,6 +44,7 @@ open class AuthBiometricFingerprintView(

    /** Set the [sensorProps] of this sensor so the view can be customized prior to layout. */
    fun setSensorProperties(sensorProps: FingerprintSensorPropertiesInternal) {
        isSfps = sensorProps.isAnySidefpsType
        isUdfps = sensorProps.isAnyUdfpsType
        udfpsAdapter = if (isUdfps) UdfpsDialogMeasureAdapter(this, sensorProps) else null
    }
+3 −1
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@ object AuthBiometricFingerprintViewBinder {
                viewModel.setRotation(view.context.display?.orientation ?: Surface.ROTATION_0)
                launch {
                    viewModel.iconAsset.collect { iconAsset ->
                        if (view.isSfps) {
                            view.updateIconViewAnimation(iconAsset)
                        }
                    }
@@ -43,3 +44,4 @@ object AuthBiometricFingerprintViewBinder {
            }
        }
    }
}