From f52ece330e7a261af57f527c51f2284b57426ca7 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Thu, 16 Apr 2026 17:10:51 +0200 Subject: [PATCH] Resize TV controls --- Yattee/Views/Player/tvOS/TVPlayerControlsView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Yattee/Views/Player/tvOS/TVPlayerControlsView.swift b/Yattee/Views/Player/tvOS/TVPlayerControlsView.swift index c30f7f46..53b1c972 100644 --- a/Yattee/Views/Player/tvOS/TVPlayerControlsView.swift +++ b/Yattee/Views/Player/tvOS/TVPlayerControlsView.swift @@ -122,7 +122,7 @@ struct TVPlayerControlsView: View { if let video = playerState?.currentVideo { ChannelAvatarView( author: video.author, - size: 110, + size: 80, yatteeServerURL: yatteeServerURL, source: video.id.source ) @@ -131,7 +131,7 @@ struct TVPlayerControlsView: View { VStack(alignment: .leading, spacing: 8) { // Video title Text(playerState?.currentVideo?.title ?? "") - .font(.title2) + .font(.headline) .fontWeight(.semibold) .lineLimit(2) .foregroundStyle(.white) @@ -139,7 +139,7 @@ struct TVPlayerControlsView: View { // Channel name if let channelName = playerState?.currentVideo?.author.name { Text(channelName) - .font(.headline) + .font(.subheadline) .foregroundStyle(.white.opacity(0.7)) } }