diff --git a/Xcodes/Backend/XcodeCommands.swift b/Xcodes/Backend/XcodeCommands.swift index 5071f30..75773bb 100644 --- a/Xcodes/Backend/XcodeCommands.swift +++ b/Xcodes/Backend/XcodeCommands.swift @@ -43,9 +43,8 @@ struct InstallButton: View { install() } label: { Text("Install") - .textCase(.uppercase) .help("InstallDescription") - }.buttonStyle(AppStoreButtonStyle(primary: false, highlighted: false)) + } } private func install() { diff --git a/Xcodes/Frontend/XcodeList/XcodeListViewRow.swift b/Xcodes/Frontend/XcodeList/XcodeListViewRow.swift index 4757977..55f431c 100644 --- a/Xcodes/Frontend/XcodeList/XcodeListViewRow.swift +++ b/Xcodes/Frontend/XcodeList/XcodeListViewRow.swift @@ -111,6 +111,8 @@ struct XcodeListViewRow: View { .help("OpenDescription") case .notInstalled: InstallButton(xcode: xcode) + .textCase(.uppercase) + .buttonStyle(AppStoreButtonStyle(primary: false, highlighted: false)) case let .installing(installationStep): InstallationStepRowView( installationStep: installationStep,