mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-27 15:26:58 +00:00
Merge "Don't let touches go through popup when notification is present" into ub-launcher3-master
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user