mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-27 06:29:54 +00:00
Force ConversationItem to intercept all touch events when in multiselect mode.
This commit is contained in:
@@ -341,7 +341,11 @@ public final class ConversationItem extends RelativeLayout implements BindableCo
|
||||
lastYDownRelativeToThis = ev.getY();
|
||||
}
|
||||
|
||||
return super.onInterceptTouchEvent(ev);
|
||||
if (batchSelected.isEmpty()) {
|
||||
return super.onInterceptTouchEvent(ev);
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user