Fix status meta indicators overlapping thread links

This isn't great, but there's nowhere else for either to go and the
difference between the large/default scales wasn't doing much before.

Closes #449
This commit is contained in:
Shadowfacts 2024-07-22 21:48:43 -07:00
parent 90537f9d12
commit 60dadf599c
1 changed files with 1 additions and 2 deletions

View File

@ -70,8 +70,7 @@ class StatusMetaIndicatorsView: UIView {
private func configureImageView(_ imageView: UIImageView) {
let weight: UIImage.SymbolWeight = UIAccessibility.isBoldTextEnabled ? .regular : traitCollection.preferredContentSizeCategory > .large ? .light : .thin
let scale: UIImage.SymbolScale = traitCollection.preferredContentSizeCategory > .extraLarge ? .large : .default
imageView.preferredSymbolConfiguration = .init(pointSize: 0, weight: weight, scale: scale)
imageView.preferredSymbolConfiguration = .init(pointSize: 0, weight: weight, scale: .default)
}
func updateUI(status: StatusMO) {