diff --git a/iOS/MasterFeed/Cell/MasterFeedTableViewCell.swift b/iOS/MasterFeed/Cell/MasterFeedTableViewCell.swift index 12cd1b1b9..662f39903 100644 --- a/iOS/MasterFeed/Cell/MasterFeedTableViewCell.swift +++ b/iOS/MasterFeed/Cell/MasterFeedTableViewCell.swift @@ -103,6 +103,7 @@ class MasterFeedTableViewCell : NNWTableViewCell { super.setHighlighted(highlighted, animated: animated) let tintColor = isHighlighted || isSelected ? AppAssets.tableViewCellHighlightedTextColor : AppAssets.secondaryAccentColor + disclosureButton?.tintColor = tintColor faviconImageView.tintColor = tintColor } @@ -110,6 +111,7 @@ class MasterFeedTableViewCell : NNWTableViewCell { super.setSelected(selected, animated: animated) let tintColor = isHighlighted || isSelected ? AppAssets.tableViewCellHighlightedTextColor : AppAssets.secondaryAccentColor + disclosureButton?.tintColor = tintColor faviconImageView.tintColor = tintColor }