From 28f001b3ed821da36587e1fd6b73fcc28f76322e Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Mon, 19 Feb 2018 21:25:32 -0800 Subject: [PATCH] Make the summary text start right after the title rather than on the next line. --- Evergreen/MainWindow/Timeline/Cell/TimelineCellData.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Evergreen/MainWindow/Timeline/Cell/TimelineCellData.swift b/Evergreen/MainWindow/Timeline/Cell/TimelineCellData.swift index 7e70e34ad..14df046e4 100644 --- a/Evergreen/MainWindow/Timeline/Cell/TimelineCellData.swift +++ b/Evergreen/MainWindow/Timeline/Cell/TimelineCellData.swift @@ -108,7 +108,7 @@ private func attributedTitleString(_ title: String, _ text: String, _ appearance if !title.isEmpty && !text.isEmpty { let titleMutable = NSMutableAttributedString(string: title, attributes: [NSAttributedStringKey.foregroundColor: appearance.titleColor, NSAttributedStringKey.font: appearance.titleFont]) - let attributedText = NSAttributedString(string: "\n" + text, attributes: [NSAttributedStringKey.foregroundColor: appearance.textColor, NSAttributedStringKey.font: appearance.textFont]) + let attributedText = NSAttributedString(string: " " + text, attributes: [NSAttributedStringKey.foregroundColor: appearance.textColor, NSAttributedStringKey.font: appearance.textFont]) titleMutable.append(attributedText) return titleMutable }