Fix "first conversation cue" visibility.

pull/2/head
Matthew Chen 6 years ago
parent a6ee64fe75
commit dd1d02593a

@ -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];
}
}

Loading…
Cancel
Save