mirror of
https://github.com/yattee/yattee.git
synced 2026-05-12 10:25:02 +00:00
Hide Home shortcuts on tvOS
This commit is contained in:
@@ -31,8 +31,10 @@ struct HomeSettingsView: View {
|
||||
|
||||
var body: some View {
|
||||
List {
|
||||
#if !os(tvOS)
|
||||
shortcutsSection
|
||||
availableShortcutsSection
|
||||
#endif
|
||||
sectionsSection
|
||||
availableSectionsSection
|
||||
itemsLimitSection
|
||||
|
||||
@@ -188,9 +188,11 @@ struct HomeView: View {
|
||||
|
||||
@ViewBuilder
|
||||
private var homeContent: some View {
|
||||
#if !os(tvOS)
|
||||
if hasVisibleShortcuts {
|
||||
shortcutsSection
|
||||
}
|
||||
#endif
|
||||
|
||||
ForEach(settingsManager?.visibleSections() ?? HomeSectionItem.defaultOrder.filter { HomeSectionItem.defaultVisibility[$0] == true }) { section in
|
||||
sectionView(for: section)
|
||||
|
||||
Reference in New Issue
Block a user