Remove the color parameter on iOS too

This commit is contained in:
Nate Weaver 2020-05-01 01:58:22 -05:00
parent 688b24f18e
commit 5ac69a411e
1 changed files with 2 additions and 2 deletions

View File

@ -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 {