Force ConversationItem to intercept all touch events when in multiselect mode.

This commit is contained in:
Alex Hart 2021-08-23 10:33:59 -03:00
parent 962d943a22
commit 7a1122b3f7

View file

@ -341,7 +341,11 @@ public final class ConversationItem extends RelativeLayout implements BindableCo
lastYDownRelativeToThis = ev.getY();
}
if (batchSelected.isEmpty()) {
return super.onInterceptTouchEvent(ev);
} else {
return true;
}
}
@Override