Fix disclosure color when selected

This commit is contained in:
Maurice Parker
2022-10-30 16:01:04 -05:00
parent 177f21a85e
commit 67aae179b0
2 changed files with 4 additions and 2 deletions

View File

@@ -171,8 +171,10 @@ class MasterFeedTableViewCell : VibrantTableViewCell {
let iconTintColor: UIColor
if isHighlighted || isSelected {
disclosureButton?.tintColor = AppAssets.vibrantTextColor
iconTintColor = AppAssets.vibrantTextColor
} else {
disclosureButton?.tintColor = AppAssets.secondaryAccentColor
if let preferredColor = iconImage?.preferredColor {
iconTintColor = UIColor(cgColor: preferredColor)
} else {