Skip to content

Commit

Permalink
fix 'カスタム' in next candidate key and upper lower key
Browse files Browse the repository at this point in the history
  • Loading branch information
ensan-hcl committed Feb 18, 2024
1 parent 2a23761 commit fdcc384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MainApp/Customize/CustardInterfaceKeyEditor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ struct CustardInterfaceKeyEditor: View {

private var keyPicker: some View {
Picker("キーの種類", selection: $key) {
if [CustardInterfaceKey.system(.enter), .custom(.flickSpace()), .custom(.flickDelete()), .system(.changeKeyboard), .system(.flickKogaki), .system(.flickKutoten), .system(.flickHiraTab), .system(.flickAbcTab), .system(.flickStar123Tab)].contains(key) {
if [CustardInterfaceKey.system(.enter), .custom(.flickSpace()), .custom(.flickDelete()), .system(.changeKeyboard), .system(.flickKogaki), .system(.flickKutoten), .system(.flickHiraTab), .system(.flickAbcTab), .system(.flickStar123Tab), .system(.upperLower), .system(.nextCandidate)].contains(key) {
Text("カスタム").tag(CustardInterfaceKey.custom(.empty))
} else {
Text("カスタム").tag(key)
Expand Down

0 comments on commit fdcc384

Please sign in to comment.