diff --git a/iOS/Settings/SettingsAttributedStringView.swift b/iOS/Settings/SettingsAttributedStringView.swift index 0bee143b6..f43f83c9b 100644 --- a/iOS/Settings/SettingsAttributedStringView.swift +++ b/iOS/Settings/SettingsAttributedStringView.swift @@ -17,15 +17,13 @@ struct SettingsAttributedStringView: UIViewRepresentable { textView.attributedText = string textView.translatesAutoresizingMaskIntoConstraints = false - + textView.isEditable = false + textView.adjustsFontForContentSizeCategory = true textView.font = .preferredFont(forTextStyle: .body) textView.textColor = UIColor.label textView.backgroundColor = UIColor.secondarySystemGroupedBackground - textView.isEditable = false - textView.isSelectable = false - return textView }