Fix theming in RoomsListViewController and RecentRoomTableViewCell.

This commit is contained in:
Doug
2021-06-29 14:17:49 +01:00
parent c05749d54e
commit e29555d719
2 changed files with 12 additions and 0 deletions
@@ -17,6 +17,8 @@
#import "RecentRoomTableViewCell.h"
#import "MXRoomSummary+Riot.h"
#import "ThemeService.h"
#import "RiotShareExtension-Swift.h"
@interface RecentRoomTableViewCell ()
@@ -44,6 +46,14 @@
return nil;
}
- (void)awakeFromNib
{
[super awakeFromNib];
self.roomTitleLabel.textColor = ThemeService.shared.theme.textPrimaryColor;
self.contentView.backgroundColor = ThemeService.shared.theme.backgroundColor;
}
- (void)layoutSubviews
{
[super layoutSubviews];