damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit cf4131f86746a8116459b2ce468e2d7f918f3591
parent 81b69bc2ea9cdaeeadf6bb772a059f0bb1fc7d16
Author: Anthony de Broise <cr0bar@users.noreply.github.com>
Date:   Sat,  8 Jul 2023 14:00:31 +0100

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

Diffstat:
Mdamus/Views/ConfigView.swift | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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)) {