Fix timeline secondary label coloring

This commit is contained in:
Maurice Parker
2019-11-04 11:47:44 -06:00
parent 524a7383ac
commit f138c2d9aa
4 changed files with 10 additions and 10 deletions

View File

@@ -41,10 +41,10 @@ class MasterTimelineTableViewCell: VibrantTableViewCell {
}
override func updateVibrancy(animated: Bool) {
updateLabelVibrancy(titleView, animated: animated)
updateLabelVibrancy(summaryView, animated: animated)
updateLabelVibrancy(dateView, animated: animated)
updateLabelVibrancy(feedNameView, animated: animated)
updateLabelVibrancy(titleView, color: labelColor, animated: animated)
updateLabelVibrancy(summaryView, color: labelColor, animated: animated)
updateLabelVibrancy(dateView, color: secondaryLabelColor, animated: animated)
updateLabelVibrancy(feedNameView, color: secondaryLabelColor, animated: animated)
UIView.animate(withDuration: duration(animated: animated)) {
if self.isHighlighted || self.isSelected {