Disable swipe when multiple selecting

pull/146/head
M66B 6 years ago
parent 3aca99c4d7
commit ae37365545

@ -282,6 +282,9 @@ public class FragmentMessages extends FragmentEx {
if (!prefs.getBoolean("swipe", true))
return 0;
if (selectionTracker != null && selectionTracker.hasSelection())
return 0;
int pos = viewHolder.getAdapterPosition();
if (pos == RecyclerView.NO_POSITION)
return 0;

Loading…
Cancel
Save