Fix incorrect label for Comments (fix #1635)

This commit is contained in:
1024jp 2024-05-10 20:28:38 +09:00
parent 620b5f8b2c
commit 19082ce388
2 changed files with 2 additions and 1 deletions

View File

@ -18,6 +18,7 @@
- Fix an issue that the application unwontedly copied the bundled theme setting files to the user domain.
- Fix an issue that the Share command was not available in the theme setting list.
- Fix the layout of the Go To dialog.
- Fix an incorrect label in the theme editor in the Appearance settings.

View File

@ -100,7 +100,7 @@ struct ThemeEditorView: View {
selection: $theme.strings.binding)
ColorPicker(String(localized: "\(SyntaxType.characters.label):"),
selection: $theme.characters.binding)
ColorPicker(String(localized: "\(SyntaxType.commands.label):"),
ColorPicker(String(localized: "\(SyntaxType.comments.label):"),
selection: $theme.comments.binding)
}.accessibilityElement(children: .contain)
}.accessibilityElement(children: .contain)