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

Commit be439fd5 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Controls UI - Fix challenge dialog default" into rvc-dev am: 35e288c6

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

Change-Id: I6ead27b78fc34d2d25033ce8183cc51c20092e93
parents a54af2ac 35e288c6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -189,12 +189,12 @@ class ControlViewHolder(
            }
            ControlAction.RESPONSE_CHALLENGE_PIN -> {
                lastChallengeDialog = ChallengeDialogs.createPinDialog(
                    this, false, failedAttempt, onDialogCancel)
                    this, false /* useAlphanumeric */, failedAttempt, onDialogCancel)
                lastChallengeDialog?.show()
            }
            ControlAction.RESPONSE_CHALLENGE_PASSPHRASE -> {
                lastChallengeDialog = ChallengeDialogs.createPinDialog(
                    this, false, failedAttempt, onDialogCancel)
                    this, true /* useAlphanumeric */, failedAttempt, onDialogCancel)
                lastChallengeDialog?.show()
            }
            ControlAction.RESPONSE_CHALLENGE_ACK -> {