mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
Guard all apps pull up work behind the flag
b/28917826 Change-Id: Ic001d820bad777d90c6bdcd1a17b6961e38769be
This commit is contained in:
@@ -683,7 +683,9 @@ public class LauncherStateTransitionAnimation {
|
||||
animated, initialized, animation, revealDuration, layerViews);
|
||||
}
|
||||
if (!animated || !initialized) {
|
||||
mAllAppsController.finishPullDown();
|
||||
if (!FeatureFlags.LAUNCHER3_ALL_APPS_PULL_UP) {
|
||||
mAllAppsController.finishPullDown();
|
||||
}
|
||||
fromView.setVisibility(View.GONE);
|
||||
dispatchOnLauncherTransitionPrepare(fromView, animated, multiplePagesVisible);
|
||||
dispatchOnLauncherTransitionStart(fromView, animated, true);
|
||||
|
||||
@@ -274,7 +274,7 @@ public class DragLayer extends InsettableFrameLayout {
|
||||
mActiveController = mDragController;
|
||||
return true;
|
||||
}
|
||||
if (mAllAppsController.onInterceptTouchEvent(ev)) {
|
||||
if (FeatureFlags.LAUNCHER3_ALL_APPS_PULL_UP && mAllAppsController.onInterceptTouchEvent(ev)) {
|
||||
mActiveController = mAllAppsController;
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user