Make unread count font bold. Issue #1209

This commit is contained in:
Maurice Parker 2019-10-28 14:15:04 -05:00
parent 586eb03f35
commit 45a38c550b
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ class MasterFeedUnreadCountView : UIView {
}
var textAttributes: [NSAttributedString.Key: AnyObject] {
let textFont = UIFont.preferredFont(forTextStyle: .caption1)
let textFont = UIFont.preferredFont(forTextStyle: .caption1).bold()
return [NSAttributedString.Key.foregroundColor: textColor, NSAttributedString.Key.font: textFont, NSAttributedString.Key.kern: NSNull()]
}
var textSizeCache = [Int: CGSize]()