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

Commit cdfc5356 authored by Mady Mellor's avatar Mady Mellor Committed by Android (Google) Code Review
Browse files

Merge "Hide the stack education view when user taps" into sc-dev

parents d5f04a78 1a916f5b
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -938,6 +938,8 @@ public class BubbleStackView extends FrameLayout
            if (ev.getAction() == MotionEvent.ACTION_DOWN) {
                if (mShowingManage) {
                    showManageMenu(false /* show */);
                } else if (mStackEduView != null && mStackEduView.getVisibility() == VISIBLE) {
                    mStackEduView.hide(false);
                } else if (mBubbleData.isExpanded()) {
                    mBubbleData.setExpanded(false);
                }
@@ -1152,6 +1154,7 @@ public class BubbleStackView extends FrameLayout
            mStackEduView = new StackEducationView(mContext);
            addView(mStackEduView);
        }
        mBubbleContainer.bringToFront();
        return mStackEduView.show(mPositioner.getDefaultStartPosition());
    }