summaryrefslogtreecommitdiffstats
path: root/policy
diff options
context:
space:
mode:
authorJim Miller <jaggies@google.com>2012-03-20 15:30:43 -0700
committerThe Android Automerger <android-build@android.com>2012-03-20 17:15:22 -0700
commitdf331873c8576e0ae34ae1ee3cc258beed373535 (patch)
treecba7eec0fa734e11defc580d2168fe2345cf7862 /policy
parent44857eeb0ff0a3fb9ade3dbe8ff4425283d9ae09 (diff)
downloadframeworks_base-df331873c8576e0ae34ae1ee3cc258beed373535.zip
frameworks_base-df331873c8576e0ae34ae1ee3cc258beed373535.tar.gz
frameworks_base-df331873c8576e0ae34ae1ee3cc258beed373535.tar.bz2
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
Diffstat (limited to 'policy')
-rw-r--r--policy/src/com/android/internal/policy/impl/SimPukUnlockScreen.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/policy/src/com/android/internal/policy/impl/SimPukUnlockScreen.java b/policy/src/com/android/internal/policy/impl/SimPukUnlockScreen.java
index ba06996..f3e7d4a 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);