From 2b67bacadcd2daa7c9f01fda37827c0e1dd8e972 Mon Sep 17 00:00:00 2001 From: Jon Miranda Date: Tue, 3 Apr 2018 11:54:49 -0700 Subject: [PATCH] Fix bug where drag handle translation was not set to 0 on device profile change. Bug: 77523779 Change-Id: Idec97c34999e05adfac7e9931ab9596a8aae67ae --- .../android/launcher3/allapps/AllAppsTransitionController.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/com/android/launcher3/allapps/AllAppsTransitionController.java b/src/com/android/launcher3/allapps/AllAppsTransitionController.java index 8788db4454..ed9873eaf6 100644 --- a/src/com/android/launcher3/allapps/AllAppsTransitionController.java +++ b/src/com/android/launcher3/allapps/AllAppsTransitionController.java @@ -99,6 +99,7 @@ public class AllAppsTransitionController implements StateHandler, OnDeviceProfil mAppsView.setAlpha(1); mLauncher.getHotseat().setTranslationY(0); mLauncher.getWorkspace().getPageIndicator().setTranslationY(0); + mLauncher.getDragHandleIndicator().setTranslationY(0); } }