From 4f9285686a3651ef7df82de7924f287ebc14c8b6 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Tue, 14 Apr 2026 02:49:07 +0200 Subject: [PATCH] Avoid collapsed sidebar pill overlapping search on tvOS Use the tab root's top safe-area inset instead of a fixed 20pt, so the search/options header in History and Bookmarks clears the floating "Home" pill drawn by the sidebarAdaptable TabView. --- Yattee/Views/Home/BookmarksListView.swift | 2 +- Yattee/Views/Home/HistoryListView.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Yattee/Views/Home/BookmarksListView.swift b/Yattee/Views/Home/BookmarksListView.swift index 07420970..b8ed1231 100644 --- a/Yattee/Views/Home/BookmarksListView.swift +++ b/Yattee/Views/Home/BookmarksListView.swift @@ -99,7 +99,7 @@ struct BookmarksListView: View { } .focusSection() .padding(.horizontal, 48) - .padding(.top, 20) + .padding(.top, 80) // Content Group { diff --git a/Yattee/Views/Home/HistoryListView.swift b/Yattee/Views/Home/HistoryListView.swift index 3da900c4..e29ff752 100644 --- a/Yattee/Views/Home/HistoryListView.swift +++ b/Yattee/Views/Home/HistoryListView.swift @@ -96,7 +96,7 @@ struct HistoryListView: View { } .focusSection() .padding(.horizontal, 48) - .padding(.top, 20) + .padding(.top, 80) // Content Group {