From bd961ebbf022666c1e07d2f60bd4280387efe631 Mon Sep 17 00:00:00 2001 From: Dave Nicolson Date: Sat, 9 Sep 2023 18:20:44 +0200 Subject: [PATCH] Fix tvOS settings table padding --- Shared/Settings/SettingsView.swift | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Shared/Settings/SettingsView.swift b/Shared/Settings/SettingsView.swift index 933c9b1c..2a04dd0c 100644 --- a/Shared/Settings/SettingsView.swift +++ b/Shared/Settings/SettingsView.swift @@ -188,6 +188,9 @@ struct SettingsView: View { Label("Advanced", systemImage: "wrench.and.screwdriver") } } + #if os(tvOS) + .padding(.horizontal, 20) + #endif Section(footer: helpFooter) { NavigationLink { @@ -196,6 +199,9 @@ struct SettingsView: View { Label("Help", systemImage: "questionmark.circle") } } + #if os(tvOS) + .padding(.horizontal, 20) + #endif #if !os(tvOS) Section(header: Text("Contact"), footer: versionString) {