From a42c1a705f711306acc09eec75987f5daa4f0619 Mon Sep 17 00:00:00 2001 From: naturecodevoid <44983869+naturecodevoid@users.noreply.github.com> Date: Sun, 19 Feb 2023 13:25:59 -0800 Subject: [PATCH] SettingsView: Adjust ordering a little bit and remove accent color --- AltStore/Views/Settings/SettingsView.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/AltStore/Views/Settings/SettingsView.swift b/AltStore/Views/Settings/SettingsView.swift index f4ade57e..e42a11c1 100644 --- a/AltStore/Views/Settings/SettingsView.swift +++ b/AltStore/Views/Settings/SettingsView.swift @@ -161,6 +161,10 @@ struct SettingsView: View { NavigationLink("Show Refresh Attempts") { RefreshAttemptsView() } + + NavigationLink(L10n.AdvancedSettingsView.title) { + AdvancedSettingsView() + } if MailComposeView.canSendMail { ModalNavigationLink("Send Feedback") { @@ -175,10 +179,6 @@ struct SettingsView: View { } SwiftUI.Button(L10n.SettingsView.switchToUIKit, action: self.switchToUIKit) - - NavigationLink(L10n.AdvancedSettingsView.title) { - AdvancedSettingsView() - }.foregroundColor(.accentColor) SwiftUI.Button(L10n.SettingsView.resetImageCache, action: self.resetImageCache) .foregroundColor(.red)