Merge "Don't let touches go through popup when notification is present" into ub-launcher3-master

This commit is contained in:
Tony Wickham
2018-04-05 20:25:54 +00:00
committed by Android (Google) Code Review

View File

@@ -129,7 +129,7 @@ public class PopupContainerWithArrow extends ArrowPopup implements DragSource,
@Override
public boolean onTouchEvent(MotionEvent ev) {
if (mNotificationItemView != null) {
return mNotificationItemView.onTouchEvent(ev);
return mNotificationItemView.onTouchEvent(ev) || super.onTouchEvent(ev);
}
return super.onTouchEvent(ev);
}