Skip to content

Commit

Permalink
Bug fix for color when BG is stale
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebash authored Jan 12, 2025
1 parent 5837306 commit 1f38ebc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LoopFollow/Contact/ContactImageUpdater.swift
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class ContactImageUpdater {

let extraAttributes: [NSAttributedString.Key: Any] = [
.font: UIFont.systemFont(ofSize: 90),
.foregroundColor: savedTextUIColor,
.foregroundColor: stale ? UIColor.gray : savedTextUIColor,
.paragraphStyle: paragraphStyle
]

Expand Down

0 comments on commit 1f38ebc

Please sign in to comment.