From 67d2c33771e868673260e93c6afe09852255798d Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Thu, 10 Nov 2022 22:28:55 +0100 Subject: [PATCH] Hide buttons on tvOS --- Shared/Views/OpenVideosView.swift | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Shared/Views/OpenVideosView.swift b/Shared/Views/OpenVideosView.swift index b0a7de9e..0b15e910 100644 --- a/Shared/Views/OpenVideosView.swift +++ b/Shared/Views/OpenVideosView.swift @@ -76,14 +76,18 @@ struct OpenVideosView: View { Group { openURLsButton - Spacer() + #if !os(tvOS) + Spacer() - openFromClipboardButton + openFromClipboardButton + #endif } } .padding(.bottom, 10) - openFilesButton + #if !os(tvOS) + openFilesButton + #endif Spacer() }