Bubble reaction view: Handle emoji label theme color.

This commit is contained in:
SBiOSoftWhare
2019-07-09 11:23:46 +02:00
parent c1d50ddc27
commit ce830f5564
@@ -81,8 +81,9 @@ final class BubbleReactionViewCell: UICollectionViewCell, NibReusable, Themable
func update(theme: Theme) {
self.theme = theme
self.reactionBackgroundView.layer.borderColor = self.theme?.tintColor.cgColor
self.countLabel.textColor = self.theme?.textPrimaryColor
self.reactionBackgroundView.layer.borderColor = theme.tintColor.cgColor
self.emojiLabel.textColor = theme.textPrimaryColor
self.countLabel.textColor = theme.textPrimaryColor
self.updateViews()
}