From fdaf785869b40848ded07eee04b5ecb80bde5b2f Mon Sep 17 00:00:00 2001 From: Bryan Montz Date: Thu, 13 Jul 2023 06:48:18 -0500 Subject: [PATCH] fixed: icon color for developer mode setting is incorrect in low-light mode Changelog-Fixed: icon color for developer mode setting is incorrect in low-light mode Signed-off-by: Bryan Montz Signed-off-by: William Casarin --- damus/Views/ConfigView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/ConfigView.swift b/damus/Views/ConfigView.swift index d6b61ae8..bc05cc09 100644 --- a/damus/Views/ConfigView.swift +++ b/damus/Views/ConfigView.swift @@ -61,7 +61,7 @@ struct ConfigView: View { } NavigationLink(value: Route.DeveloperSettings(settings: settings)) { - IconLabel(NSLocalizedString("Developer", comment: "Section header for developer settings"), img_name: "magic-stick2.fill", color: .black) + IconLabel(NSLocalizedString("Developer", comment: "Section header for developer settings"), img_name: "magic-stick2.fill", color: DamusColors.adaptableBlack) } }