mirror of
https://github.com/yattee/yattee.git
synced 2026-05-13 02:45:03 +00:00
Disable scroll clipping for tvOS video listing grids
Allows focus-scaled cards to render past scroll view bounds on History, Bookmarks, Search, and Instance browse screens.
This commit is contained in:
@@ -259,6 +259,9 @@ struct BookmarksListView: View {
|
||||
}
|
||||
}
|
||||
}
|
||||
#if os(tvOS)
|
||||
.scrollClipDisabled()
|
||||
#endif
|
||||
}
|
||||
|
||||
// MARK: - Helper Views
|
||||
|
||||
@@ -317,6 +317,9 @@ struct HistoryListView: View {
|
||||
}
|
||||
}
|
||||
}
|
||||
#if os(tvOS)
|
||||
.scrollClipDisabled()
|
||||
#endif
|
||||
}
|
||||
|
||||
private var confirmationTitle: String {
|
||||
|
||||
Reference in New Issue
Block a user