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

Commit f3593a97 authored by Beverly's avatar Beverly
Browse files

Show `swipe up to open` message on faceAuth from AOD2

Previously the message was dropped.

Test: manual
Fixes: 199221758
Change-Id: I990debae712193a6905b618eda9311c2e9582c6c
parent 906b2ed5
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -798,7 +798,9 @@ public class KeyguardIndicationController {
     * Show message on the keyguard for how the user can unlock/enter their device.
     */
    public void showActionToUnlock() {
        if (mDozing) {
        if (mDozing
                && !mKeyguardUpdateMonitor.getUserCanSkipBouncer(
                        KeyguardUpdateMonitor.getCurrentUser())) {
            return;
        }

@@ -809,7 +811,7 @@ public class KeyguardIndicationController {
                String message = mContext.getString(R.string.keyguard_retry);
                mStatusBarKeyguardViewManager.showBouncerMessage(message, mInitialTextColorState);
            }
        } else if (mKeyguardUpdateMonitor.isScreenOn()) {
        } else {
            showTransientIndication(mContext.getString(R.string.keyguard_unlock),
                    false /* isError */, true /* hideOnScreenOff */);
        }