From cb5142cba26fc9a6f62cd856880831456c3f0123 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sun, 23 Aug 2020 19:18:02 -0700 Subject: [PATCH] Make the feed name bold in timeline cells. --- Mac/MainWindow/Timeline/Cell/TimelineCellAppearance.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/MainWindow/Timeline/Cell/TimelineCellAppearance.swift b/Mac/MainWindow/Timeline/Cell/TimelineCellAppearance.swift index 2f5223d14..e62b87e70 100644 --- a/Mac/MainWindow/Timeline/Cell/TimelineCellAppearance.swift +++ b/Mac/MainWindow/Timeline/Cell/TimelineCellAppearance.swift @@ -48,7 +48,7 @@ struct TimelineCellAppearance: Equatable { let smallItemFontSize = floor(actualFontSize * 0.90) let largeItemFontSize = actualFontSize - self.feedNameFont = NSFont.systemFont(ofSize: smallItemFontSize) + self.feedNameFont = NSFont.systemFont(ofSize: smallItemFontSize, weight: NSFont.Weight.bold) self.dateFont = NSFont.systemFont(ofSize: smallItemFontSize, weight: NSFont.Weight.bold) self.titleFont = NSFont.systemFont(ofSize: largeItemFontSize, weight: NSFont.Weight.semibold) self.textFont = NSFont.systemFont(ofSize: largeItemFontSize, weight: NSFont.Weight.light)