Browse Source

Dim size on body to download

main
M66B 5 years ago
parent
commit
c32397539d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/src/main/java/eu/faircode/email/AdapterMessage.java

+ 1
- 1
app/src/main/java/eu/faircode/email/AdapterMessage.java View File

@ -303,7 +303,7 @@ public class AdapterMessage extends PagedListAdapter<TupleMessageEx, AdapterMess
}
tvSize.setText(message.size == null ? null : Helper.humanReadableByteCount(message.size, true));
tvSize.setTypeface(null, message.content ? Typeface.NORMAL : Typeface.BOLD);
tvSize.setAlpha(message.content ? 1.0f : 0.5f);
tvSize.setVisibility(message.size == null ? View.GONE : View.VISIBLE);
ivAttachments.setVisibility(message.attachments > 0 ? View.VISIBLE : View.GONE);


Loading…
Cancel
Save