Work around bug where cell tintColor isn't always correctly inherited from the window

This commit is contained in:
Maurice Parker 2019-08-20 16:37:31 -05:00
parent 9988847fba
commit eb8de035d7
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ class MasterFeedTableViewCell : UITableViewCell {
override func setSelected(_ selected: Bool, animated: Bool) {
titleView.textColor = selected ? AppAssets.selectedTextColor : UIColor.label
faviconImageView.tintColor = selected ? AppAssets.selectedTextColor : tintColor
faviconImageView.tintColor = selected ? AppAssets.selectedTextColor : AppAssets.netNewsWireBlueColor
super.setSelected(selected, animated: animated)
}