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
73 changed files with 581 additions and 557 deletions

View File

@@ -78,7 +78,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
// Designed to switch between two keyboard layouts on Windows using a locking switch.
// Does nothing if right shift is pressed for easy resync.
if (!(get_mods() & MOD_BIT(KC_RSFT)))
SEND_STRING(SS_DOWN(X_LALT)SS_TAP(X_LSHIFT)SS_UP(X_LALT));
SEND_STRING(SS_DOWN(X_LALT)SS_TAP(X_LSFT)SS_UP(X_LALT));
return false;
}