mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Prevent redrawing message
This commit is contained in:
parent
2b34877425
commit
d9d1b4c8b3
1 changed files with 4 additions and 1 deletions
|
@ -1857,7 +1857,10 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
}
|
||||
|
||||
private void bindBody(TupleMessageEx message, final boolean scroll) {
|
||||
tvBody.setText(null);
|
||||
if (!Objects.equals(tvBody.getTag(), message.id)) {
|
||||
tvBody.setTag(message.id);
|
||||
tvBody.setText(null);
|
||||
}
|
||||
clearActions();
|
||||
|
||||
ibSeenBottom.setImageResource(message.ui_seen
|
||||
|
|
Loading…
Reference in a new issue