Skip to content

Commit 8e558b4

Browse files
Fix bug: Use US key definition when key is not found in JP key
definition
1 parent 1203d1e commit 8e558b4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tmk_core/protocol/nrf/keycode_str_converter.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -996,6 +996,9 @@ uint16_t convert_jp(const char* str, uint8_t len, uint8_t key_string_map)
996996
0);
997997
if (kc != KC_NO) return kc;
998998

999+
kc = convert_kc(str, len, 0);
1000+
if (kc != KC_NO) return kc;
1001+
9991002
return KC_NO;
10001003
}
10011004

0 commit comments

Comments
 (0)