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

Commit ee7a0694 authored by Ats Jenk's avatar Ats Jenk Committed by Android (Google) Code Review
Browse files

Merge "Set bubble bar alpha to 0 and collapse if it bubbles are hidden" into main

parents f62002bb 25955235
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -233,6 +233,10 @@ public class BubbleBarViewController {
        if (mHiddenForNoBubbles != hidden) {
            mHiddenForNoBubbles = hidden;
            updateVisibilityForStateChange();
            if (hidden) {
                mBarView.setAlpha(0);
                mBarView.setExpanded(false);
            }
            mActivity.bubbleBarVisibilityChanged(!hidden);
        }
    }
@@ -259,8 +263,6 @@ public class BubbleBarViewController {
            mBarView.setVisibility(VISIBLE);
        } else {
            mBarView.setVisibility(INVISIBLE);
            mBarView.setAlpha(0);
            mBarView.setExpanded(false);
        }
    }