From 51e9d5c635b8882c1947122f1aa7e820d3a5f287 Mon Sep 17 00:00:00 2001 From: Adam Cohen Date: Tue, 20 Sep 2011 20:52:43 -0700 Subject: [PATCH] Fixing disappearing lock screen, issue 5319246 Change-Id: Ia59ba6388775efc83aadf1e489b767be5624d385 --- .../android/internal/policy/impl/LockPatternKeyguardView.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/policy/src/com/android/internal/policy/impl/LockPatternKeyguardView.java b/policy/src/com/android/internal/policy/impl/LockPatternKeyguardView.java index 1d311d6589712..e2a1149470435 100644 --- a/policy/src/com/android/internal/policy/impl/LockPatternKeyguardView.java +++ b/policy/src/com/android/internal/policy/impl/LockPatternKeyguardView.java @@ -531,7 +531,8 @@ public class LockPatternKeyguardView extends KeyguardViewBase { mShowLockBeforeUnlock = resources.getBoolean(R.bool.config_enableLockBeforeUnlockScreen); mConfiguration = newConfig; if (DEBUG_CONFIGURATION) Log.v(TAG, "**** re-creating lock screen since config changed"); - updateScreen(mMode, true /* force */); + removeCallbacks(mRecreateRunnable); + post(mRecreateRunnable); } @Override