mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-22 06:01:12 +00:00
Hide authentication for drafts and outbox
This commit is contained in:
parent
03823a34ff
commit
0ff48a1baf
1 changed files with 3 additions and 1 deletions
|
@ -1046,7 +1046,9 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
ibAuth.setImageLevel(0);
|
||||
ibAuth.setImageTintList(ColorStateList.valueOf(colorWarning));
|
||||
ibAuth.setVisibility(View.VISIBLE);
|
||||
} else if (authentication_indicator) {
|
||||
} else if (authentication_indicator &&
|
||||
!EntityFolder.DRAFTS.equals(message.folderType) &&
|
||||
!EntityFolder.OUTBOX.equals(message.folderType)) {
|
||||
ibAuth.setImageLevel(auths + 1);
|
||||
ibAuth.setImageTintList(ColorStateList.valueOf(
|
||||
auths < 3 ? colorSeparator : colorControlNormal));
|
||||
|
|
Loading…
Reference in a new issue