mirror of https://github.com/M66B/FairEmail.git
Ignore clicks when selected
This commit is contained in:
parent
75f6d118a2
commit
8b4e6e7057
|
@ -2068,6 +2068,9 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||||
if (message == null)
|
if (message == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (selectionTracker != null && selectionTracker.isSelected(message.id))
|
||||||
|
return;
|
||||||
|
|
||||||
if (view.getId() == R.id.ibAvatar)
|
if (view.getId() == R.id.ibAvatar)
|
||||||
onViewContact(message);
|
onViewContact(message);
|
||||||
else if (view.getId() == R.id.ibAuth)
|
else if (view.getId() == R.id.ibAuth)
|
||||||
|
|
Loading…
Reference in New Issue