Use correct selected color for disclosure button
This commit is contained in:
parent
c33cd8f988
commit
2f04ffd5ed
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue