commit | 3b39d8a1448d304794cd2d35622f3e82ea1113ab | [log] [tgz] |
---|---|---|
author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Thu Nov 21 01:45:43 2024 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Thu Nov 21 01:45:43 2024 +0000 |
tree | af5ea729091d1b0125a4acfe7b5eaafe92071b28 | |
parent | d4fec1514d9f1673ee03b629662d3154b76db9ba [diff] | |
parent | 564bda762193e077d0a71a0640aa04965740498d [diff] |
Merge "Fix small issue where overflow expanded view wouldn't show" into main
diff --git a/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/BubbleBarExpandedView.java b/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/BubbleBarExpandedView.java index 9fe7a97..ed49417 100644 --- a/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/BubbleBarExpandedView.java +++ b/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/BubbleBarExpandedView.java
@@ -402,7 +402,7 @@ } void animateExpansionWhenTaskViewVisible(Runnable animateExpansion) { - if (mVisibilityState == TaskViewVisibilityState.VISIBLE) { + if (mVisibilityState == TaskViewVisibilityState.VISIBLE || mIsOverflow) { animateExpansion.run(); } else { mAnimateExpansion = animateExpansion;