Don't display thread count in thread view
This commit is contained in:
parent
3413cbebf5
commit
c2bb451712
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue