diff options
| author | 2024-12-02 18:28:44 +0000 | |
|---|---|---|
| committer | 2024-12-02 18:28:44 +0000 | |
| commit | 3395ff1e89847ad69feec1b7f434ae2c103967e6 (patch) | |
| tree | ee0bbae7630fc26f4133c7649f07e9e749f682a6 | |
| parent | a44e441842736c93e89530e5cfc7d968bbc5d37a (diff) | |
Revert "Avoid notifying that launcher is visible when opening translucent targets."
This reverts commit a44e441842736c93e89530e5cfc7d968bbc5d37a.
Reason for revert: b/379800273
Fixes: 379800273
Change-Id: If0e3df27a088787b9e36686c69adfc6cbd3347d7
| -rw-r--r-- | libs/WindowManager/Shell/src/com/android/wm/shell/recents/RecentsTransitionHandler.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libs/WindowManager/Shell/src/com/android/wm/shell/recents/RecentsTransitionHandler.java b/libs/WindowManager/Shell/src/com/android/wm/shell/recents/RecentsTransitionHandler.java index 2dc4de58ee24..9016c45e8197 100644 --- a/libs/WindowManager/Shell/src/com/android/wm/shell/recents/RecentsTransitionHandler.java +++ b/libs/WindowManager/Shell/src/com/android/wm/shell/recents/RecentsTransitionHandler.java @@ -1298,9 +1298,6 @@ public class RecentsTransitionHandler implements Transitions.TransitionHandler, // otherwise a new transition will notify the relevant observers if (returningToApp && allAppsAreTranslucent(mPausingTasks)) { mHomeTransitionObserver.notifyHomeVisibilityChanged(true); - } else if (!toHome && mState == STATE_NEW_TASK - && allAppsAreTranslucent(mOpeningTasks)) { - // We are opening a translucent app. Launcher is still visible so we do nothing. } else if (!toHome) { // For some transitions, we may have notified home activity that it became // visible. We need to notify the observer that we are no longer going home. |