From debfdef26f291a31c5598c97c8f1540f04dad192 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Mon, 13 Apr 2026 21:45:28 +0200 Subject: [PATCH] Increase grid spacing on tvOS for focus effect clearance The tvOS focus effect scales up the focused card, causing it to overlap adjacent cards' text. Increase grid spacing from 32 to 48 points. --- Yattee/Models/VideoListLayout.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Yattee/Models/VideoListLayout.swift b/Yattee/Models/VideoListLayout.swift index 7b0805a3..175f1624 100644 --- a/Yattee/Models/VideoListLayout.swift +++ b/Yattee/Models/VideoListLayout.swift @@ -43,7 +43,7 @@ enum GridConstants { /// Spacing between grid items. static let spacing: CGFloat = { #if os(tvOS) - 32 + 48 #else 12 #endif