From bbeb38ecf05c60821ac7623f06d7d629dcaa4150 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Mon, 13 Apr 2026 20:18:20 +0200 Subject: [PATCH] Hide link action, clipboard, and handoff settings on tvOS These features are not available on Apple TV: clipboard monitoring, default link action (no tap/share), and Handoff continuity. --- Yattee/Views/Settings/LayoutNavigationSettingsView.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Yattee/Views/Settings/LayoutNavigationSettingsView.swift b/Yattee/Views/Settings/LayoutNavigationSettingsView.swift index 728f06ad..88f728cd 100644 --- a/Yattee/Views/Settings/LayoutNavigationSettingsView.swift +++ b/Yattee/Views/Settings/LayoutNavigationSettingsView.swift @@ -19,15 +19,17 @@ struct LayoutNavigationSettingsView: View { #endif #if !os(tvOS) VideoActionsSection(settings: settings) - #endif LinkActionSection(settings: settings) ClipboardSection(settings: settings) + #endif #if os(iOS) if #available(iOS 26, *) { MiniPlayerMinimizeBehaviorSection(settings: settings) } #endif + #if !os(tvOS) HandoffSection(settings: settings) + #endif } } #if !os(tvOS)