Browse Source

Dim thread count when not threaded

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

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

@ -194,6 +194,8 @@ public class AdapterMessage extends PagedListAdapter<TupleMessageEx, AdapterMess
} else {
tvCount.setText(Integer.toString(message.count));
ivThread.setVisibility(View.VISIBLE);
tvCount.setAlpha(message.threaded ? 1.0f : 0.5f);
ivThread.setAlpha(message.threaded ? 1.0f : 0.5f);
}
if (debug) {


Loading…
Cancel
Save