From 09db1ba9fce61e76993b035194182973a9789ffc Mon Sep 17 00:00:00 2001 From: naturecodevoid <44983869+naturecodevoid@users.noreply.github.com> Date: Thu, 16 Feb 2023 18:13:32 -0800 Subject: [PATCH] SettingsView: Move App Icon to a new, general settings section --- AltStore/Views/Settings/SettingsView.swift | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/AltStore/Views/Settings/SettingsView.swift b/AltStore/Views/Settings/SettingsView.swift index 84e4775d..715616c0 100644 --- a/AltStore/Views/Settings/SettingsView.swift +++ b/AltStore/Views/Settings/SettingsView.swift @@ -38,7 +38,6 @@ struct SettingsView: View { var body: some View { List { Section { - if let connectedAppleID = connectedTeams.first { HStack { Text(L10n.SettingsView.ConnectedAppleID.name) @@ -89,6 +88,12 @@ struct SettingsView: View { } } + Section { + NavigationLink(L10n.AppIconsView.title) { + AppIconsView() + } + } + Section { Toggle(isOn: self.$isBackgroundRefreshEnabled, label: { Text(L10n.SettingsView.backgroundRefresh) @@ -150,10 +155,6 @@ struct SettingsView: View { } Section { - NavigationLink(L10n.AppIconsView.title) { - AppIconsView() - } - NavigationLink("Show Error Log") { ErrorLogView() }