Change unread indicator to use secondary accent color

This commit is contained in:
Maurice Parker 2019-09-18 09:56:10 -05:00
parent 8b732e5353
commit 0fcbcb50e0
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class MasterUnreadIndicatorView: UIView {
}()
override func draw(_ dirtyRect: CGRect) {
let color = isSelected ? AppAssets.tableViewCellHighlightedTextColor : AppAssets.primaryAccentColor
let color = isSelected ? AppAssets.tableViewCellHighlightedTextColor : AppAssets.secondaryAccentColor
color.setFill()
MasterUnreadIndicatorView.bezierPath.fill()
}