From 08b9a56ab3298d66ef22ce46dfacddcb86cbced9 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Mon, 19 Feb 2018 22:06:24 -0800 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20show=20text=20in=20the=20timeli?= =?UTF-8?q?ne=20when=20there=E2=80=99s=20a=20title.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Evergreen/MainWindow/Timeline/Cell/TimelineCellData.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Evergreen/MainWindow/Timeline/Cell/TimelineCellData.swift b/Evergreen/MainWindow/Timeline/Cell/TimelineCellData.swift index 14df046e4..228e6cff4 100644 --- a/Evergreen/MainWindow/Timeline/Cell/TimelineCellData.swift +++ b/Evergreen/MainWindow/Timeline/Cell/TimelineCellData.swift @@ -108,8 +108,8 @@ 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: " " + text, attributes: [NSAttributedStringKey.foregroundColor: appearance.textColor, NSAttributedStringKey.font: appearance.textFont]) - titleMutable.append(attributedText) +// let attributedText = NSAttributedString(string: " " + text, attributes: [NSAttributedStringKey.foregroundColor: appearance.textColor, NSAttributedStringKey.font: appearance.textFont]) +// titleMutable.append(attributedText) return titleMutable }