From cf4131f86746a8116459b2ce468e2d7f918f3591 Mon Sep 17 00:00:00 2001 From: Anthony de Broise Date: Sat, 8 Jul 2023 14:00:31 +0100 Subject: [PATCH] Minor update to ConfigView.swift to fix key and search icon Replaced icon names with names existing in assets to avoid them being left blank. Changelog-Fixed: Fix icons on settings view Closes: #1353 --- damus/Views/ConfigView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/damus/Views/ConfigView.swift b/damus/Views/ConfigView.swift index 4c673bbe..d6b61ae8 100644 --- a/damus/Views/ConfigView.swift +++ b/damus/Views/ConfigView.swift @@ -37,7 +37,7 @@ struct ConfigView: View { Form { Section { NavigationLink(value: Route.KeySettings(keypair: state.keypair)) { - IconLabel(NSLocalizedString("Keys", comment: "Settings section for managing keys"), img_name: "key", color: .purple) + IconLabel(NSLocalizedString("Keys", comment: "Settings section for managing keys"), img_name: "Key", color: .purple) } NavigationLink(value: Route.AppearanceSettings(settings: settings)) { @@ -45,7 +45,7 @@ struct ConfigView: View { } NavigationLink(value: Route.SearchSettings(settings: settings)) { - IconLabel(NSLocalizedString("Search/Universe", comment: "Section header for search/universe settings"), img_name: "magnifyingglass", color: .red) + IconLabel(NSLocalizedString("Search/Universe", comment: "Section header for search/universe settings"), img_name: "search", color: .red) } NavigationLink(value: Route.NotificationSettings(settings: settings)) {