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

Commit e7efecc5 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add some info about the overflow in bubble bar dump" into main

parents 313b5590 cc843823
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1474,7 +1474,8 @@ public class BubbleBarView extends FrameLayout {
        pw.println("  visibility: " + getVisibility());
        pw.println("  alpha: " + getAlpha());
        pw.println("  translationY: " + getTranslationY());
        pw.println("  bubbles in bar (childCount = " + getChildCount() + ")");
        pw.println("  childCount: " + getChildCount());
        pw.println("  hasOverflow:  " + hasOverflow());
        for (BubbleView bubbleView: getBubbles()) {
            BubbleBarItem bubble = bubbleView.getBubble();
            String key = bubble == null ? "null" : bubble.getKey();
+1 −0
Original line number Diff line number Diff line
@@ -793,6 +793,7 @@ public class BubbleBarViewController {
        pw.println("  mShouldShowEducation: " + mShouldShowEducation);
        pw.println("  mBubbleBarTranslationY.value: " + mBubbleBarTranslationY.value);
        pw.println("  mBubbleBarSwipeUpTranslationY: " + mBubbleBarSwipeUpTranslationY);
        pw.println("  mOverflowAdded: " + mOverflowAdded);
        if (mBarView != null) {
            mBarView.dump(pw);
        } else {