File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,9 @@ struct CompilersView: View {
1616 if let compilers = compilers {
1717 VStack ( alignment: . leading) {
1818 Text ( " Compilers " ) . font ( . headline)
19- Text ( Self . content ( from: compilers) ) . font ( . subheadline)
19+ Text ( Self . content ( from: compilers) )
20+ . font ( . subheadline)
21+ . textSelection ( . enabled)
2022 }
2123 } else {
2224 EmptyView ( )
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ struct InfoPane: View {
1919 Text ( verbatim: " Xcode \( xcode. description) \( xcode. version. buildMetadataIdentifiersDisplay) " )
2020 . font ( . title)
2121 . frame ( maxWidth: . infinity, alignment: . leading)
22+ . textSelection ( . enabled)
2223 }
2324 InfoPaneControls ( xcode: xcode)
2425 }
Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ struct SDKsView: View {
1818 } else {
1919 VStack ( alignment: . leading) {
2020 Text ( " SDKs " ) . font ( . headline)
21- Text ( content) . font ( . subheadline)
21+ Text ( content)
22+ . font ( . subheadline)
23+ . textSelection ( . enabled)
2224 }
2325 }
2426 }
You can’t perform that action at this time.
0 commit comments