mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-08 08:57:42 +02:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user