Skip to content

Commit

Permalink
CATTY-715 Fix tint of community accessory indicators
Browse files Browse the repository at this point in the history
Fixed the tint of the community accessory indicators
  • Loading branch information
lucatp authored and wallisch committed Oct 18, 2024
1 parent 6bf47e4 commit 706aeed
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,12 @@ class ChartProjectCell: UITableViewCell {

chartProjectTitle?.text = chartTitle
chartProjectTitle.textColor = UIColor.globalTint

if let accessoryImage = UIImage(named: "chevron.right#accessory") {
self.accessoryView = UIImageView(image: accessoryImage)
}
self.accessoryView?.contentMode = .scaleAspectFit
self.accessoryView?.tintAdjustmentMode = .normal
self.accessoryView?.tintColor = UIColor.utilityTint
}
}

0 comments on commit 706aeed

Please sign in to comment.