Loading src/com/android/launcher3/popup/PopupContainerWithArrow.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -129,7 +129,7 @@ public class PopupContainerWithArrow extends ArrowPopup implements DragSource, @Override @Override public boolean onTouchEvent(MotionEvent ev) { public boolean onTouchEvent(MotionEvent ev) { if (mNotificationItemView != null) { if (mNotificationItemView != null) { return mNotificationItemView.onTouchEvent(ev); return mNotificationItemView.onTouchEvent(ev) || super.onTouchEvent(ev); } } return super.onTouchEvent(ev); return super.onTouchEvent(ev); } } Loading Loading
src/com/android/launcher3/popup/PopupContainerWithArrow.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -129,7 +129,7 @@ public class PopupContainerWithArrow extends ArrowPopup implements DragSource, @Override @Override public boolean onTouchEvent(MotionEvent ev) { public boolean onTouchEvent(MotionEvent ev) { if (mNotificationItemView != null) { if (mNotificationItemView != null) { return mNotificationItemView.onTouchEvent(ev); return mNotificationItemView.onTouchEvent(ev) || super.onTouchEvent(ev); } } return super.onTouchEvent(ev); return super.onTouchEvent(ev); } } Loading