Fix "first conversation cue" visibility.

This commit is contained in:
Matthew Chen 2019-02-19 20:27:23 -05:00
parent a6ee64fe75
commit dd1d02593a
1 changed files with 2 additions and 0 deletions

View File

@ -1621,10 +1621,12 @@ typedef NS_ENUM(NSInteger, HomeViewControllerSection) {
if (self.homeViewMode == HomeViewMode_Inbox && inboxCount == 0 && archiveCount == 0) {
[_tableView setHidden:YES];
[self.emptyInboxView setHidden:NO];
[self.firstConversationCueView setHidden:NO];
[self updateFirstConversationLabel];
} else {
[_tableView setHidden:NO];
[self.emptyInboxView setHidden:YES];
[self.firstConversationCueView setHidden:YES];
}
}