From c3855cf8fb3c3368b7e3d281ed41a1fe168e2fab Mon Sep 17 00:00:00 2001 From: Saumya Prakash Date: Tue, 22 Apr 2025 22:22:08 +0000 Subject: [PATCH] Hide the taskbar edu when taskbar all apps launches This change will dismiss the taskbar edu tooltip if taskbar all apps is launched while it is showing. Fix: 410687369 Test: Reset taskbar edu through developer options, open an app, observe taskbar edu, then launch taskbar all apps. The edu tooltip should disappear Flag: EXEMPT bugfix Change-Id: I82d9d09d2f297e2ab20bf794d01ba5735a6d2fbd --- .../launcher3/taskbar/allapps/TaskbarAllAppsController.java | 1 + 1 file changed, 1 insertion(+) diff --git a/quickstep/src/com/android/launcher3/taskbar/allapps/TaskbarAllAppsController.java b/quickstep/src/com/android/launcher3/taskbar/allapps/TaskbarAllAppsController.java index 6c55b28845..7ada818860 100644 --- a/quickstep/src/com/android/launcher3/taskbar/allapps/TaskbarAllAppsController.java +++ b/quickstep/src/com/android/launcher3/taskbar/allapps/TaskbarAllAppsController.java @@ -133,6 +133,7 @@ public final class TaskbarAllAppsController { if (isOpen()) { mSlideInView.close(true); } else { + mControllers.taskbarEduTooltipController.hide(); mControllers.taskbarPopupController.maybeCloseMultiInstanceMenu(); show(true, showKeyboard); }