Small improvement

This commit is contained in:
M66B 2024-06-10 10:40:21 +02:00
parent 5525430f0c
commit 75988186cc
1 changed files with 2 additions and 2 deletions

View File

@ -3477,8 +3477,8 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
!EntityFolder.OUTBOX.equals(message.folderType)
? View.VISIBLE : View.GONE);
boolean reformatted_hint = prefs.getBoolean("reformatted_hint", hasWebView);
tvReformatted.setVisibility(reformatted_hint ? View.VISIBLE : View.GONE);
boolean reformatted_hint = prefs.getBoolean("reformatted_hint", true);
tvReformatted.setVisibility(reformatted_hint && hasWebView ? View.VISIBLE : View.GONE);
boolean signed_data = args.getBoolean("signed_data");
tvDecrypt.setVisibility(encrypted && !unlocked ? View.VISIBLE : View.GONE);