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

Commit 0efdcfc8 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Show `swipe up to open` message on faceAuth from AOD2" into sc-qpr1-dev

parents 2e2e4b3a f3593a97
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -800,7 +800,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;
        }

@@ -811,7 +813,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 */);
        }