Fix strange long press behavior in convo list.

Fixes #9944
master
Alex Hart 2020-08-21 14:36:10 -03:00
parent b94a636542
commit ffcd311c90
1 changed files with 5 additions and 0 deletions

View File

@ -838,6 +838,11 @@ public class ConversationListFragment extends MainFragment implements ActionMode
@Override
public boolean onConversationLongClick(Conversation conversation) {
if (actionMode != null) {
onConversationClick(conversation);
return true;
}
defaultAdapter.initializeBatchMode(true);
defaultAdapter.toggleConversationInBatchSet(conversation);