Dark Theme - Bug Fix

Recents List: some room avatars have an unexpected black background.
We apply here the new property `defaultBackgroundColor` defined in MXKImageView class to initialize correctly image background.
This commit is contained in:
Giom Foret
2017-08-14 19:11:13 +02:00
parent 0faee0ce56
commit bd2d7281bb
11 changed files with 15 additions and 15 deletions
@@ -768,7 +768,7 @@
else
{
roomCell.avatarImageView.image = [UIImage imageNamed:@"start_chat"];
roomCell.avatarImageView.backgroundColor = [UIColor clearColor];
roomCell.avatarImageView.defaultBackgroundColor = [UIColor clearColor];
roomCell.avatarImageView.userInteractionEnabled = NO;
roomCell.titleLabel.text = NSLocalizedStringFromTable(@"room_participants_action_start_new_chat", @"Vector", nil);
}