From 1f047cdb100cb74bff97cb690511e58d3f259b38 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Wed, 19 Aug 2020 11:56:14 -0500 Subject: [PATCH] Make the timeline date bold. Issue #2365 --- 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 f213471af..2f5223d14 100644 --- a/Mac/MainWindow/Timeline/Cell/TimelineCellAppearance.swift +++ b/Mac/MainWindow/Timeline/Cell/TimelineCellAppearance.swift @@ -49,7 +49,7 @@ struct TimelineCellAppearance: Equatable { let largeItemFontSize = actualFontSize self.feedNameFont = NSFont.systemFont(ofSize: smallItemFontSize) - self.dateFont = NSFont.systemFont(ofSize: smallItemFontSize) + 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.textOnlyFont = NSFont.systemFont(ofSize: largeItemFontSize)