From dbe968335da56651b27b4048b71db959f5e94af8 Mon Sep 17 00:00:00 2001 From: Brian Isganitis Date: Wed, 15 Feb 2023 22:31:55 +0000 Subject: [PATCH] Suppress transient Taskbar features EDU in overview. The EDU explains how to drag to splitscreen applications, but this operation is unavailable in overview. Therefore, let's only attempt to show the EDU when we are in an application. Test: Manual Fix: 269363653 Change-Id: I97aa5c76b44562189862432fb3856bf5634c6e4b --- .../launcher3/taskbar/TaskbarTranslationController.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/quickstep/src/com/android/launcher3/taskbar/TaskbarTranslationController.java b/quickstep/src/com/android/launcher3/taskbar/TaskbarTranslationController.java index 80f030fb69..a6b2a8abd0 100644 --- a/quickstep/src/com/android/launcher3/taskbar/TaskbarTranslationController.java +++ b/quickstep/src/com/android/launcher3/taskbar/TaskbarTranslationController.java @@ -113,7 +113,8 @@ public class TaskbarTranslationController implements TaskbarControllers.Loggable return; } reset(); - if (mControllers.taskbarStashController.isTaskbarVisibleAndNotStashing()) { + if (mControllers.taskbarStashController.isInApp() + && mControllers.taskbarStashController.isTaskbarVisibleAndNotStashing()) { mControllers.taskbarEduTooltipController.maybeShowFeaturesEdu(); } }));