From df331873c8576e0ae34ae1ee3cc258beed373535 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Tue, 20 Mar 2012 15:30:43 -0700 Subject: Fix 5960562: Show emergency button on PukUnlock screen This fixes an issue where the device doesn't show the emergency button on the SIM PUK unlock screen. The problem was introduced in I3127bfd5 where we allowed the button to be conditionally shown. Change-Id: I3e2aae2bce89399a2564c3f8a726a8db99cdec86 --- policy/src/com/android/internal/policy/impl/SimPukUnlockScreen.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/policy/src/com/android/internal/policy/impl/SimPukUnlockScreen.java b/policy/src/com/android/internal/policy/impl/SimPukUnlockScreen.java index ba06996064fe..f3e7d4a95a7a 100644 --- a/policy/src/com/android/internal/policy/impl/SimPukUnlockScreen.java +++ b/policy/src/com/android/internal/policy/impl/SimPukUnlockScreen.java @@ -106,7 +106,7 @@ public class SimPukUnlockScreen extends LinearLayout implements KeyguardScreen, mHeaderText.setSelected(true); mKeyguardStatusViewManager = new KeyguardStatusViewManager(this, updateMonitor, - lockpatternutils, callback, false); + lockpatternutils, callback, true); mPinText.setFocusableInTouchMode(true); mPinText.setOnFocusChangeListener(this); -- cgit v1.2.3