From a2264cad98b97bee31838ae3bb4bd3bcd82ac8af Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Wed, 18 Sep 2019 02:53:39 -0500 Subject: [PATCH] Fix link tint color on about page --- iOS/Settings/SettingsAttributedStringView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/iOS/Settings/SettingsAttributedStringView.swift b/iOS/Settings/SettingsAttributedStringView.swift index f43f83c9b..21f9d1186 100644 --- a/iOS/Settings/SettingsAttributedStringView.swift +++ b/iOS/Settings/SettingsAttributedStringView.swift @@ -22,6 +22,7 @@ struct SettingsAttributedStringView: UIViewRepresentable { textView.adjustsFontForContentSizeCategory = true textView.font = .preferredFont(forTextStyle: .body) textView.textColor = UIColor.label + textView.tintColor = AppAssets.secondaryAccentColor textView.backgroundColor = UIColor.secondarySystemGroupedBackground return textView