Skip to content

Commit

Permalink
Remove forced uppercase in list view
Browse files Browse the repository at this point in the history
  • Loading branch information
chickdan committed May 14, 2024
1 parent 21c26c9 commit 23b745e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Xcodes/Frontend/XcodeList/XcodeListViewRow.swift
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,10 @@ struct XcodeListViewRow: View {
switch xcode.installState {
case .installed:
Button("Open") { appState.open(xcode: xcode) }
.textCase(.uppercase)
.buttonStyle(AppStoreButtonStyle(primary: true, highlighted: selected))
.help("OpenDescription")
case .notInstalled:
InstallButton(xcode: xcode)
.textCase(.uppercase)
.buttonStyle(AppStoreButtonStyle(primary: false, highlighted: false))
case let .installing(installationStep):
InstallationStepRowView(
Expand Down

0 comments on commit 23b745e

Please sign in to comment.