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

Commit 938929c3 authored by Mady Mellor's avatar Mady Mellor Committed by Automerger Merge Worker
Browse files

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

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14753038

Change-Id: I6bb25986c9a5b22bb8674e97cc63c3a36a3e8127
parents 00c0eedf cdfc5356
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());
    }