mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
allow selecting text from the compilers
This commit is contained in:
parent
8d7412fd18
commit
53ec9156ff
1 changed files with 3 additions and 1 deletions
|
|
@ -16,7 +16,9 @@ struct CompilersView: View {
|
|||
if let compilers = compilers {
|
||||
VStack(alignment: .leading) {
|
||||
Text("Compilers").font(.headline)
|
||||
Text(Self.content(from: compilers)).font(.subheadline)
|
||||
Text(Self.content(from: compilers))
|
||||
.font(.subheadline)
|
||||
.textSelection(.enabled)
|
||||
}
|
||||
} else {
|
||||
EmptyView()
|
||||
|
|
|
|||
Loading…
Reference in a new issue