mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
do not disable markdown in message selection mode
This commit is contained in:
@@ -394,13 +394,11 @@ public class ConversationItem extends LinearLayout
|
||||
bodyText.setVisibility(View.GONE);
|
||||
}
|
||||
else {
|
||||
Spannable spannable = (Spannable)markwon.toMarkdown(text);
|
||||
if (batchSelected.isEmpty()) {
|
||||
Spannable spannable = (Spannable)markwon.toMarkdown(text);
|
||||
spannable = EmojiTextView.linkify(spannable);
|
||||
bodyText.setText(spannable);
|
||||
} else {
|
||||
bodyText.setText(text);
|
||||
}
|
||||
bodyText.setText(spannable);
|
||||
bodyText.setVisibility(View.VISIBLE);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user