diff options
author | Jorim Jaggi <jjaggi@google.com> | 2014-08-25 15:25:38 +0200 |
---|---|---|
committer | Jorim Jaggi <jjaggi@google.com> | 2014-08-25 17:41:54 +0200 |
commit | 118aecea584499fb41966fd8a0ea0ac60ac6bdb6 (patch) | |
tree | 867f89231f3aea20116b4065a4dfdc7ee917d0ac /packages/SystemUI/src/com/android/systemui/keyguard | |
parent | 5cef4fa9c189a43ca081d74319f6046e4eba6b8d (diff) | |
download | frameworks_base-118aecea584499fb41966fd8a0ea0ac60ac6bdb6.zip frameworks_base-118aecea584499fb41966fd8a0ea0ac60ac6bdb6.tar.gz frameworks_base-118aecea584499fb41966fd8a0ea0ac60ac6bdb6.tar.bz2 |
Fix swipe up affordance bugs
- Fix that you could invoke the gesture from bouncer
- Fix that sometimes the card got stuck
- Decrease threshold to invoke the gesture
Bug: 17201962
Bug: 17200912
Bug: 17199841
Change-Id: I19f1e1a69395c3bcd82cdad0d814916a3cdd3428
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/keyguard')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java index ad568b8..f4d0669 100644 --- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java @@ -1323,9 +1323,7 @@ public class KeyguardViewMediator extends SystemUI { // (like recents). Temporary enable/disable (e.g. the "back" button) are // done in KeyguardHostView. flags |= StatusBarManager.DISABLE_RECENT; - if (!isAssistantAvailable()) { - flags |= StatusBarManager.DISABLE_SEARCH; - } + flags |= StatusBarManager.DISABLE_SEARCH; } if (isShowingAndNotOccluded()) { flags |= StatusBarManager.DISABLE_HOME; |