Merge pull request #5539 from vector-im/ismail/5537_home_badges

Home Screen: Fix Section & TabBar Badges
This commit is contained in:
ismailgulek
2022-02-10 11:49:50 +03:00
committed by GitHub
14 changed files with 123 additions and 41 deletions
@@ -136,13 +136,13 @@
return count;
}
- (UIView *)viewForHeaderInSection:(NSInteger)section withFrame:(CGRect)frame
- (UIView *)viewForHeaderInSection:(NSInteger)section withFrame:(CGRect)frame inTableView:(UITableView*)tableView
{
UIView *sectionHeader = nil;
if (section != searchedRoomIdOrAliasSection)
{
sectionHeader = [super viewForHeaderInSection:section withFrame:frame];
sectionHeader = [super viewForHeaderInSection:section withFrame:frame inTableView:tableView];
}
return sectionHeader;