Skip to content

Commit

Permalink
Disable mention clicks in multi-select mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
greyson-signal committed Oct 8, 2020
1 parent 8965388 commit f642de9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1521,7 +1521,7 @@ private class MentionClickableSpan extends ClickableSpan {

@Override
public void onClick(@NonNull View widget) {
if (eventListener != null) {
if (eventListener != null && batchSelected.isEmpty()) {
VibrateUtil.vibrateTick(context);
eventListener.onGroupMemberClicked(mentionedRecipientId, conversationRecipient.get().requireGroupId());
}
Expand Down

0 comments on commit f642de9

Please sign in to comment.