We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4649ba0 commit 9622b56Copy full SHA for 9622b56
2 files changed
Xcodes/Backend/XcodeCommands.swift
@@ -43,9 +43,8 @@ struct InstallButton: View {
43
install()
44
} label: {
45
Text("Install")
46
- .textCase(.uppercase)
47
.help("InstallDescription")
48
- }.buttonStyle(AppStoreButtonStyle(primary: false, highlighted: false))
+ }
49
}
50
51
private func install() {
Xcodes/Frontend/XcodeList/XcodeListViewRow.swift
@@ -111,6 +111,8 @@ struct XcodeListViewRow: View {
111
.help("OpenDescription")
112
case .notInstalled:
113
InstallButton(xcode: xcode)
114
+ .textCase(.uppercase)
115
+ .buttonStyle(AppStoreButtonStyle(primary: false, highlighted: false))
116
case let .installing(installationStep):
117
InstallationStepRowView(
118
installationStep: installationStep,
0 commit comments