From 5ac69a411e33d7b6b66cf5b5edf255e797eec87e Mon Sep 17 00:00:00 2001 From: Nate Weaver Date: Fri, 1 May 2020 01:58:22 -0500 Subject: [PATCH] Remove the color parameter on iOS too --- iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift b/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift index 0c2d9d4a5..df8f2fa2f 100644 --- a/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift +++ b/iOS/MasterTimeline/Cell/MasterTimelineTableViewCell.swift @@ -174,8 +174,8 @@ private extension MasterTimelineTableViewCell { func updateTextFieldAttributedText(_ label: UILabel, _ text: NSAttributedString?) { var s = text ?? NSAttributedString(string: "") - if let fieldFont = label.font, let color = label.textColor { - s = s.adding(font: fieldFont, color: color) + if let fieldFont = label.font { + s = s.adding(font: fieldFont) } if label.attributedText != s {