From 45a38c550b1076bb947d72f85f59545e5f6b8ed1 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Mon, 28 Oct 2019 14:15:04 -0500 Subject: [PATCH] Make unread count font bold. Issue #1209 --- iOS/MasterFeed/Cell/MasterFeedUnreadCountView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iOS/MasterFeed/Cell/MasterFeedUnreadCountView.swift b/iOS/MasterFeed/Cell/MasterFeedUnreadCountView.swift index a5093a6bb..abe659095 100644 --- a/iOS/MasterFeed/Cell/MasterFeedUnreadCountView.swift +++ b/iOS/MasterFeed/Cell/MasterFeedUnreadCountView.swift @@ -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]()