From 9a450c95039c10490fd7ddbec6f5a95e7bde9bcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toni=20F=C3=B6rster?= Date: Tue, 20 Aug 2024 01:23:54 +0200 Subject: [PATCH] minor tweak to comment replies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Toni Förster --- Shared/Player/Video Details/CommentView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/Player/Video Details/CommentView.swift b/Shared/Player/Video Details/CommentView.swift index 899c3b0f..a59f67a1 100644 --- a/Shared/Player/Video Details/CommentView.swift +++ b/Shared/Player/Video Details/CommentView.swift @@ -208,7 +208,7 @@ struct CommentView: View { Group { let last = comments.replies.last ForEach(comments.replies) { comment in - Self(comment: comment, repliesID: $repliesID, availableWidth: availableWidth) + Self(comment: comment, repliesID: $repliesID, availableWidth: availableWidth - 22) #if os(tvOS) .focusable() #endif