فهرست منبع

VLCNetworkListCell: Fix highlighted cell labels text color

Closes #661
Edgar Fouillet 5 سال پیش
والد
کامیت
12f1c4c967
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      Sources/LocalNetworkConnectivity/VLCNetworkListCell.m

+ 3 - 0
Sources/LocalNetworkConnectivity/VLCNetworkListCell.m

@@ -50,6 +50,9 @@
     self.titleLabel.textColor = PresentationTheme.current.colors.cellTextColor;
     self.subtitleLabel.textColor = PresentationTheme.current.colors.cellDetailTextColor;
     self.folderTitleLabel.textColor = PresentationTheme.current.colors.cellDetailTextColor;
+    self.titleLabel.highlightedTextColor = PresentationTheme.current.colors.cellTextColor;
+    self.subtitleLabel.highlightedTextColor = PresentationTheme.current.colors.cellDetailTextColor;
+    self.folderTitleLabel.highlightedTextColor = PresentationTheme.current.colors.cellTextColor;
 
     UIColor *backgroundColor = PresentationTheme.current.colors.background;