From 5aed44f9697015ef25424274e1f3c8e3c6650b2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Padovani?= Date: Sat, 17 Feb 2024 18:37:32 +0100 Subject: [PATCH] Allow selecting text from the info panel --- Xcodes/Frontend/InfoPane/InfoPane.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Xcodes/Frontend/InfoPane/InfoPane.swift b/Xcodes/Frontend/InfoPane/InfoPane.swift index 95826b7..69da1f4 100644 --- a/Xcodes/Frontend/InfoPane/InfoPane.swift +++ b/Xcodes/Frontend/InfoPane/InfoPane.swift @@ -19,6 +19,7 @@ struct InfoPane: View { Text(verbatim: "Xcode \(xcode.description) \(xcode.version.buildMetadataIdentifiersDisplay)") .font(.title) .frame(maxWidth: .infinity, alignment: .leading) + .textSelection(.enabled) } InfoPaneControls(xcode: xcode) }