From 31332c0e096d6c5cefa9db098c3e6107062ff3e2 Mon Sep 17 00:00:00 2001 From: Mohammed Imthathullah Date: Sun, 23 Jul 2023 10:28:42 +0530 Subject: [PATCH] Display visionOS version in InfoPane --- 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 88195da..3842a55 100644 --- a/Xcodes/Frontend/InfoPane/InfoPane.swift +++ b/Xcodes/Frontend/InfoPane/InfoPane.swift @@ -180,6 +180,7 @@ struct InfoPane: View { ("iOS", \.iOS), ("watchOS", \.watchOS), ("tvOS", \.tvOS), + ("visionOS", \.visionOS), ], id: \.0) { row in if let sdk = sdks[keyPath: row.1] { Text("\(row.0): \(sdk.compactMap { $0.number }.joined(separator: ", "))")