mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-03 13:44:40 +00:00
Workaround layout bug
This commit is contained in:
parent
1dfc765dd1
commit
c1d810c9e0
1 changed files with 2 additions and 1 deletions
|
@ -596,7 +596,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
|
||||
Spanned body = properties.getBody(message.id);
|
||||
tvBody.setText(body);
|
||||
tvBody.setMovementMethod(new UrlHandler());
|
||||
tvBody.setMovementMethod(null);
|
||||
if (internet || message.content)
|
||||
pbBody.setVisibility(View.VISIBLE);
|
||||
else
|
||||
|
@ -1070,6 +1070,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
tvBody.setMovementMethod(new UrlHandler());
|
||||
pbBody.setVisibility(View.GONE);
|
||||
properties.setBody(message.id, body);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue