macOS: disable hit testing when not expanded

fixes overspilling of text when clicking on collapsed descriptions
This commit is contained in:
Toni Förster 2023-12-05 00:36:12 +01:00
parent eb1dfe69cd
commit b04385ceae
No known key found for this signature in database
GPG Key ID: 292F3E5086C83FC7

View File

@ -56,27 +56,24 @@ struct VideoDescription: View {
} }
} }
var shouldExpand: Bool {
expand
}
@ViewBuilder var textDescription: some View { @ViewBuilder var textDescription: some View {
#if canImport(AppKit) #if canImport(AppKit)
Group { Group {
if #available(macOS 12, *) { if #available(macOS 12, *) {
DescriptionWithLinks(description: description, detailsSize: detailsSize) DescriptionWithLinks(description: description, detailsSize: detailsSize)
.frame(maxWidth: .infinity, alignment: .leading) .frame(maxWidth: .infinity, alignment: .leading)
.lineLimit(shouldExpand ? 500 : collapsedLinesDescription) .lineLimit(expand ? 500 : collapsedLinesDescription)
.textSelection(.enabled) .textSelection(.enabled)
} else { } else {
Text(description) Text(description)
.frame(maxWidth: .infinity, alignment: .leading) .frame(maxWidth: .infinity, alignment: .leading)
.lineLimit(shouldExpand ? 500 : collapsedLinesDescription) .lineLimit(expand ? 500 : collapsedLinesDescription)
} }
} }
.multilineTextAlignment(.leading) .multilineTextAlignment(.leading)
.font(.system(size: 14)) .font(.system(size: 14))
.lineSpacing(3) .lineSpacing(3)
.allowsHitTesting(expand)
#endif #endif
} }