1
0
Fork 0

Remove legacy sendstring keycodes (#18749)

This commit is contained in:
Ryan 2022-10-17 23:45:23 +11:00 committed by GitHub
parent c57330d340
commit bad8c5992b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
73 changed files with 581 additions and 557 deletions

View file

@ -42,13 +42,13 @@ void set_japanese_mode(bool new_state) {
edvorakjp_state.japanese_mode = new_state;
if (edvorakjp_state.japanese_mode) {
if (edvorakjp_config.enable_kc_lang) {
SEND_STRING(SS_TAP(X_LANG1));
SEND_STRING(SS_TAP(X_LNG1));
} else {
SEND_STRING(SS_LALT("`"));
}
} else {
if (edvorakjp_config.enable_kc_lang) {
SEND_STRING(SS_TAP(X_LANG2));
SEND_STRING(SS_TAP(X_LNG2));
} else {
SEND_STRING(SS_LALT("`"));
}