commit 5ded564bdcbaf107fe2495d34433f594027cc539
parent 3908192fe22f9a6cb2eed6777201037ca486320f
Author: Suhail Saqan <suhail.saqan@gmail.com>
Date: Sat, 5 Aug 2023 01:19:39 -0500
settings: change settings order: Reactions -> Developer
Signed-off-by: William Casarin <jb55@jb55.com>
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/damus/Views/ConfigView.swift b/damus/Views/ConfigView.swift
@@ -60,13 +60,13 @@ struct ConfigView: View {
IconLabel(NSLocalizedString("Translation", comment: "Section header for text and appearance settings"), img_name: "globe", color: .green)
}
- NavigationLink(value: Route.DeveloperSettings(settings: settings)) {
- IconLabel(NSLocalizedString("Developer", comment: "Section header for developer settings"), img_name: "magic-stick2.fill", color: DamusColors.adaptableBlack)
- }
-
NavigationLink(value: Route.ReactionsSettings(settings: settings)) {
IconLabel(NSLocalizedString("Reactions", comment: "Section header for reactions settings"), img_name: "shaka.fill", color: .purple)
}
+
+ NavigationLink(value: Route.DeveloperSettings(settings: settings)) {
+ IconLabel(NSLocalizedString("Developer", comment: "Section header for developer settings"), img_name: "magic-stick2.fill", color: DamusColors.adaptableBlack)
+ }
}
Section(NSLocalizedString("Sign Out", comment: "Section title for signing out")) {