summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/src/com/android/systemui/keyguard
diff options
context:
space:
mode:
authorJorim Jaggi <jjaggi@google.com>2014-08-25 15:25:38 +0200
committerJorim Jaggi <jjaggi@google.com>2014-08-25 17:41:54 +0200
commit118aecea584499fb41966fd8a0ea0ac60ac6bdb6 (patch)
tree867f89231f3aea20116b4065a4dfdc7ee917d0ac /packages/SystemUI/src/com/android/systemui/keyguard
parent5cef4fa9c189a43ca081d74319f6046e4eba6b8d (diff)
downloadframeworks_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.java4
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;