Skip to content

Commit

Permalink
TextEditingSettingsView.swift: fix typo in setting name (#1349)
Browse files Browse the repository at this point in the history
Updated Braket -> Bracket in settings labels
  • Loading branch information
andypiper authored Jun 22, 2023
1 parent 184e086 commit 5c3cf81
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private extension TextEditingSettingsView {
@ViewBuilder private var bracketPairHighlight: some View {
Group {
Picker(
"Braket Pair Highlight",
"Bracket Pair Highlight",
selection: $textEditing.bracketHighlight.highlightType
) {
Text("Disabled").tag(SettingsData.TextEditingSettings.BracketPairHighlight.HighlightType.disabled)
Expand All @@ -150,7 +150,7 @@ private extension TextEditingSettingsView {
if [.bordered, .underline].contains(textEditing.bracketHighlight.highlightType) {
Toggle("Use Custom Color", isOn: $textEditing.bracketHighlight.useCustomColor)
SettingsColorPicker(
"Braket Pair Highlight Color",
"Bracket Pair Highlight Color",
color: $textEditing.bracketHighlight.color.swiftColor
)
.foregroundColor(
Expand Down

0 comments on commit 5c3cf81

Please sign in to comment.