Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 564bda76 authored by Mady Mellor's avatar Mady Mellor
Browse files

Fix small issue where overflow expanded view wouldn't show

Small regression from ag/30408723; don't need to wait for taskview to
be visible if it's the overflow view.

Flag: com.android.wm.shell.enable_bubble_bar
Test: manual - navigate to bubble overflow in bar mode
Bug: 374640759
Change-Id: I4ee92263ed7373dd9e9cc356e4b6bbf8b0883635
parent 7c7a16a5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -402,7 +402,7 @@ public class BubbleBarExpandedView extends FrameLayout implements BubbleTaskView
    }

    void animateExpansionWhenTaskViewVisible(Runnable animateExpansion) {
        if (mVisibilityState == TaskViewVisibilityState.VISIBLE) {
        if (mVisibilityState == TaskViewVisibilityState.VISIBLE || mIsOverflow) {
            animateExpansion.run();
        } else {
            mAnimateExpansion = animateExpansion;