Don't show empty date popovers.
This commit is contained in:
parent
264d353ec2
commit
f8e63098a2
1 changed files with 4 additions and 0 deletions
|
@ -1375,6 +1375,10 @@ public class ConversationFragment extends Fragment
|
||||||
}
|
}
|
||||||
|
|
||||||
public void show() {
|
public void show() {
|
||||||
|
if (textView.getText() == null || textView.getText().length() == 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (pendingHide) {
|
if (pendingHide) {
|
||||||
pendingHide = false;
|
pendingHide = false;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue