Merge pull request #2263 from vector-im/riot_2260

BF: 0.8.0: Tabs at the top of Room Details are hard to see in dark theme
This commit is contained in:
SBiOSoftWhare
2019-02-18 18:33:15 +01:00
committed by GitHub
2 changed files with 19 additions and 0 deletions
+1
View File
@@ -4,6 +4,7 @@ Changes in 0.8.1 (2019-02-)
Bug fix:
* Fix text color in room preview (PR #2261)
* Fix navigation bar background after accepting an invite (PR #2261)
* Tabs at the top of Room Details are hard to see in dark theme (#2260).
Changes in 0.8.0 (2019-02-15)
===============================================
@@ -127,6 +127,24 @@
return viewControllers;
}
- (void)setSectionHeaderTintColor:(UIColor *)sectionHeaderTintColor
{
if (_sectionHeaderTintColor != sectionHeaderTintColor)
{
_sectionHeaderTintColor = sectionHeaderTintColor;
if (selectedMarkerView)
{
selectedMarkerView.backgroundColor = sectionHeaderTintColor;
}
for (UILabel *label in sectionLabels)
{
label.textColor = sectionHeaderTintColor;
}
}
}
#pragma mark -
- (void)finalizeInit