1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Don't display thread count in thread view

This commit is contained in:
cketti 2012-10-10 04:32:48 +02:00
parent 3413cbebf5
commit c2bb451712

View File

@ -2102,7 +2102,7 @@ public class MessageListFragment extends SherlockFragment implements OnItemClick
} }
int threadCount = message.threadCount; int threadCount = message.threadCount;
if (threadCount > 1) { if (mThreadId == -1 && threadCount > 1) {
holder.threadCount.setText(Integer.toString(threadCount)); holder.threadCount.setText(Integer.toString(threadCount));
holder.threadCount.setVisibility(View.VISIBLE); holder.threadCount.setVisibility(View.VISIBLE);
} else { } else {