From 53ec9156ff8196214d4c4e55b9e00bed577cdbc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Padovani?= Date: Sat, 17 Feb 2024 18:39:10 +0100 Subject: [PATCH] allow selecting text from the compilers --- Xcodes/Frontend/InfoPane/CompilersView.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Xcodes/Frontend/InfoPane/CompilersView.swift b/Xcodes/Frontend/InfoPane/CompilersView.swift index b08458a..962937d 100644 --- a/Xcodes/Frontend/InfoPane/CompilersView.swift +++ b/Xcodes/Frontend/InfoPane/CompilersView.swift @@ -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()