From 8df0067813d24dc53b49b5c06e1361fa9e9a4145 Mon Sep 17 00:00:00 2001 From: Mihael Cholakov Date: Mon, 13 Jan 2020 10:13:02 +0200 Subject: [PATCH] Fix icon highlighted color --- iOS/UIKit Extensions/VibrantTableViewCell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iOS/UIKit Extensions/VibrantTableViewCell.swift b/iOS/UIKit Extensions/VibrantTableViewCell.swift index 012ad631e..902c8bf81 100644 --- a/iOS/UIKit Extensions/VibrantTableViewCell.swift +++ b/iOS/UIKit Extensions/VibrantTableViewCell.swift @@ -77,7 +77,7 @@ class VibrantBasicTableViewCell: VibrantTableViewCell { @IBInspectable var imageSelected: UIImage? var iconTint: UIColor { - return isHighlighted || isSelected ? .systemBackground : AppAssets.primaryAccentColor + return isHighlighted || isSelected ? labelColor : AppAssets.primaryAccentColor } var iconImage: UIImage? {