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

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

Merge "Add null check in AuthBiometricView#onConfigurationChange" into...

Merge "Add null check in AuthBiometricView#onConfigurationChange" into tm-qpr-dev am: fb599cdf am: 92cd3305

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



Change-Id: I8ce5f8ab10948cb90dbce1b99e6cdfb4062af336
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 79b8e4c3 92cd3305
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -658,8 +658,10 @@ public abstract class AuthBiometricView extends LinearLayout {
    protected void onConfigurationChanged(Configuration newConfig) {
        super.onConfigurationChanged(newConfig);
        mIconController.onConfigurationChanged(newConfig);
        if (mSavedState != null) {
            updateState(mSavedState.getInt(AuthDialog.KEY_BIOMETRIC_STATE));
        }
    }

    @Override
    protected void onFinishInflate() {