damus

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

commit 81b69bc2ea9cdaeeadf6bb772a059f0bb1fc7d16
parent 0c736a18a99aad8aad70f948916070b6c34e9d2d
Author: Bryan Montz <bryanmontz@me.com>
Date:   Sat,  8 Jul 2023 06:56:07 -0500

add explanatory footer to Developer Mode setting view

Signed-off-by: Bryan Montz <bryanmontz@me.com>
Reviewed-by: William Casarin <jb55@jb55.com>

Diffstat:
Mdamus/Views/Settings/DeveloperSettingsView.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/damus/Views/Settings/DeveloperSettingsView.swift b/damus/Views/Settings/DeveloperSettingsView.swift @@ -13,7 +13,7 @@ struct DeveloperSettingsView: View { var body: some View { Form { - Section { + Section(footer: Text(NSLocalizedString("Developer Mode enables features and options that may help developers diagnose issues and improve this app. Most users will not need Developer Mode.", comment: "Section header for Developer Settings view"))) { Toggle(NSLocalizedString("Developer Mode", comment: "Setting to enable developer mode"), isOn: $settings.developer_mode) .toggleStyle(.switch) }