Show not completely authenticated dimmed

This commit is contained in:
M66B 2021-07-19 09:54:34 +02:00
parent 9035d73c02
commit c34709bcc7
1 changed files with 2 additions and 1 deletions

View File

@ -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);