From 81b69bc2ea9cdaeeadf6bb772a059f0bb1fc7d16 Mon Sep 17 00:00:00 2001 From: Bryan Montz Date: Sat, 8 Jul 2023 06:56:07 -0500 Subject: [PATCH] add explanatory footer to Developer Mode setting view Signed-off-by: Bryan Montz Reviewed-by: William Casarin --- damus/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 index 175d4222..9f1b81e0 100644 --- 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) }