From 8350586dc3ec237199f19abfda3fea55b926d09e Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sun, 23 Aug 2020 21:24:52 -0700 Subject: [PATCH] Use regular font weight for body text in the timeline. --- 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 e62b87e70..06d32439f 100644 --- a/Mac/MainWindow/Timeline/Cell/TimelineCellAppearance.swift +++ b/Mac/MainWindow/Timeline/Cell/TimelineCellAppearance.swift @@ -51,7 +51,7 @@ struct TimelineCellAppearance: Equatable { 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) + self.textFont = NSFont.systemFont(ofSize: largeItemFontSize) self.textOnlyFont = NSFont.systemFont(ofSize: largeItemFontSize) self.showIcon = showIcon