mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-03 21:55:13 +00:00
Show not completely authenticated dimmed
This commit is contained in:
parent
9035d73c02
commit
c34709bcc7
1 changed files with 2 additions and 1 deletions
|
@ -1048,7 +1048,8 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
ibAuth.setVisibility(View.VISIBLE);
|
||||
} else if (authentication_indicator) {
|
||||
ibAuth.setImageLevel(auths + 1);
|
||||
ibAuth.setImageTintList(ColorStateList.valueOf(colorControlNormal));
|
||||
ibAuth.setImageTintList(ColorStateList.valueOf(
|
||||
auths < 3 ? colorSeparator : colorControlNormal));
|
||||
ibAuth.setVisibility(View.VISIBLE);
|
||||
} else
|
||||
ibAuth.setVisibility(View.GONE);
|
||||
|
|
Loading…
Reference in a new issue