commit | 421d04193c2fef1f14f2a7aa754e8be3346cd4e2 | [log] [tgz] |
---|---|---|
author | Tony Wickham <twickham@google.com> | Fri Mar 01 10:50:37 2019 -0800 |
committer | Tony Wickham <twickham@google.com> | Fri Mar 01 11:15:18 2019 -0800 |
tree | c2d47f324c757e04c04e409acb3de12f0e50a666 | |
parent | 7419d8174db984e61dd1994886ac8f402e317b3f [diff] |
Don't allow swipe up for all apps above shelf It's confusing that swiping up and holding on the shelf brings up overview, but swiping up and holding slightly above the shelf doesn't. The reason is that a different controller that just went straight to all apps was used in the second case; removing that reduces confusion. Change-Id: Idceed909cd51f27e1d6ffc97d874e5f664d1fc1d
diff --git a/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/RecentsUiFactory.java b/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/RecentsUiFactory.java index 50cc4da..81ff0c7 100644 --- a/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/RecentsUiFactory.java +++ b/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/RecentsUiFactory.java
@@ -62,7 +62,6 @@ if (swipeUpToHome) { list.add(new FlingAndHoldTouchController(launcher)); - list.add(new OverviewToAllAppsTouchController(launcher)); } else { if (launcher.getDeviceProfile().isVerticalBarLayout()) { list.add(new OverviewToAllAppsTouchController(launcher));