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

Commit 4e1902a0 authored by d34d's avatar d34d Committed by Clark Scheff
Browse files

Keyguard: Stop fingerprint auth when not showing

Change-Id: Ie754ac2c9a4b13f1fd2c146511e3b17baa420793
REF: CYNGNOS-709
(cherry picked from commit 3137f81c)
parent f1b8ae1c
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1281,6 +1281,10 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener {
                cb.onKeyguardVisibilityChangedRaw(isShowing);
            }
        }
        // Make sure if we are not showing that we stop fingerprint authentication
        if (!isShowing && mLockPatternUtils.usingFingerprint()) {
            stopAuthenticatingFingerprint();
        }
    }

    /**