reskin: ColorValues: suffix UIColor properties names with "Color"

This commit is contained in:
manuroe
2019-01-10 15:23:22 +01:00
parent 1a68cdadee
commit 6d69bfa167
76 changed files with 218 additions and 217 deletions
@@ -415,10 +415,10 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
NSString *roomCount = [NSString stringWithFormat:@" %tu", count];
NSMutableAttributedString *mutableSectionTitle = [[NSMutableAttributedString alloc] initWithString:title
attributes:@{NSForegroundColorAttributeName : RiotDesignValues.colorValues.headerTextPrimary,
attributes:@{NSForegroundColorAttributeName : RiotDesignValues.colorValues.headerTextPrimaryColor,
NSFontAttributeName: [UIFont boldSystemFontOfSize:15.0]}];
[mutableSectionTitle appendAttributedString:[[NSMutableAttributedString alloc] initWithString:roomCount
attributes:@{NSForegroundColorAttributeName : RiotDesignValues.colorValues.headerTextSecondary,
attributes:@{NSForegroundColorAttributeName : RiotDesignValues.colorValues.headerTextSecondaryColor,
NSFontAttributeName: [UIFont boldSystemFontOfSize:15.0]}]];
sectionTitle = mutableSectionTitle;
@@ -426,7 +426,7 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
else if (title)
{
sectionTitle = [[NSAttributedString alloc] initWithString:title
attributes:@{NSForegroundColorAttributeName : RiotDesignValues.colorValues.headerTextPrimary,
attributes:@{NSForegroundColorAttributeName : RiotDesignValues.colorValues.headerTextPrimaryColor,
NSFontAttributeName: [UIFont boldSystemFontOfSize:15.0]}];
}