From c78dd4a35e7777eb92da7ef41473105f57cc7f77 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Mon, 15 Nov 2021 19:28:21 +0100 Subject: [PATCH] Enable text selection for video description --- Shared/Player/VideoDetails.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Shared/Player/VideoDetails.swift b/Shared/Player/VideoDetails.swift index dcc08e94..0940537c 100644 --- a/Shared/Player/VideoDetails.swift +++ b/Shared/Player/VideoDetails.swift @@ -339,6 +339,7 @@ struct VideoDetails: View { VStack(alignment: .leading, spacing: 10) { if let description = video.description { Text(description) + .textSelection(.enabled) .frame(maxWidth: .infinity, alignment: .leading) .font(.caption) .padding(.bottom, 4)