From 2f04ffd5ed682501a15af91cefc7838b03b00e90 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Thu, 26 Sep 2019 20:48:18 -0500 Subject: [PATCH] Use correct selected color for disclosure button --- iOS/MasterFeed/Cell/MasterFeedTableViewCell.swift | 2 ++ 1 file changed, 2 insertions(+) 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 }