mirror of https://github.com/M66B/FairEmail.git
Small improvement
This commit is contained in:
parent
5525430f0c
commit
75988186cc
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue