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

Commit a6a8b1bd authored by Lyn Han's avatar Lyn Han Committed by Automerger Merge Worker
Browse files

Merge "Show bubble by default when stack expands" into rvc-dev am: d668678a...

Merge "Show bubble by default when stack expands" into rvc-dev am: d668678a am: 9efa5f75 am: b9b240f0

Change-Id: Ib196987aa80730a067e97760a5379c750b40a166
parents baf909fc b9b240f0
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -454,7 +454,6 @@ public class BubbleStackView extends FrameLayout
                    // that means overflow was previously expanded. Set the selected bubble
                    // internally without going through BubbleData (which would ignore it since it's
                    // already selected).
                    mBubbleData.setShowingOverflow(true);
                    setSelectedBubble(clickedBubble);
                }
            } else {
@@ -1344,7 +1343,10 @@ public class BubbleStackView extends FrameLayout
        }
        if (bubbleToSelect == null || bubbleToSelect.getKey() != BubbleOverflow.KEY) {
            mBubbleData.setShowingOverflow(false);
        } else {
            mBubbleData.setShowingOverflow(true);
        }

        final BubbleViewProvider previouslySelected = mExpandedBubble;
        mExpandedBubble = bubbleToSelect;
        updatePointerPosition();