diff options
| author | Craig Mautner <cmautner@google.com> | 2012-09-28 11:54:09 -0700 |
|---|---|---|
| committer | Craig Mautner <cmautner@google.com> | 2012-09-28 11:54:09 -0700 |
| commit | cd03a26f4f5663b40d4679de102519ccc163fa10 (patch) | |
| tree | 10287e16899cb2f40956fc2494f1d1ee424faf00 /policy | |
| parent | 01996793dd2a70acb0ae006960c23c31f0e39d5f (diff) | |
| download | frameworks_base-cd03a26f4f5663b40d4679de102519ccc163fa10.zip frameworks_base-cd03a26f4f5663b40d4679de102519ccc163fa10.tar.gz frameworks_base-cd03a26f4f5663b40d4679de102519ccc163fa10.tar.bz2 | |
Missed a spot, needInput was not getting called.
Fixes bug 7250008.
Change-Id: I837af438510275ea69e217289aeb7a08111b91b5
Diffstat (limited to 'policy')
| -rw-r--r-- | policy/src/com/android/internal/policy/impl/keyguard/KeyguardHostView.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/policy/src/com/android/internal/policy/impl/keyguard/KeyguardHostView.java b/policy/src/com/android/internal/policy/impl/keyguard/KeyguardHostView.java index c5ec33b..1d1c7fc 100644 --- a/policy/src/com/android/internal/policy/impl/keyguard/KeyguardHostView.java +++ b/policy/src/com/android/internal/policy/impl/keyguard/KeyguardHostView.java @@ -547,8 +547,9 @@ public class KeyguardHostView extends KeyguardViewBase { oldView.onPause(); newView.onResume(); + final boolean needsInput = newView.needsInput(); if (mViewMediatorCallback != null) { - mViewMediatorCallback.setNeedsInput(newView.needsInput()); + mViewMediatorCallback.setNeedsInput(needsInput); } // Find and show this child. |
