From 421d04193c2fef1f14f2a7aa754e8be3346cd4e2 Mon Sep 17 00:00:00 2001 From: Tony Wickham Date: Fri, 1 Mar 2019 10:50:37 -0800 Subject: [PATCH] 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 --- .../src/com/android/launcher3/uioverrides/RecentsUiFactory.java | 1 - 1 file changed, 1 deletion(-) 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 50cc4daedc..81ff0c7cad 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 @@ public abstract class RecentsUiFactory { if (swipeUpToHome) { list.add(new FlingAndHoldTouchController(launcher)); - list.add(new OverviewToAllAppsTouchController(launcher)); } else { if (launcher.getDeviceProfile().isVerticalBarLayout()) { list.add(new OverviewToAllAppsTouchController(launcher));