From 74223c34a969c0877bde035c721c21a1f25890fa Mon Sep 17 00:00:00 2001 From: Ryan Date: Mon, 17 Oct 2022 00:14:40 +1100 Subject: Remove legacy keycodes, part 6 (#18740) * `KC_RSHIFT` -> `KC_RSFT` * `KC_RCTRL` -> `KC_RCTL` * `KC_LSHIFT` -> `KC_LSFT` * `KC_LCTRL` -> `KC_LCTL` --- users/pcoves/tapDance.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'users/pcoves') diff --git a/users/pcoves/tapDance.c b/users/pcoves/tapDance.c index 548ed35274..05b451f02e 100644 --- a/users/pcoves/tapDance.c +++ b/users/pcoves/tapDance.c @@ -60,7 +60,7 @@ void altFinish(qk_tap_dance_state_t* state, void* user_data) { case 3: if (state->pressed) { register_code(KC_RALT); - register_code(KC_RSHIFT); + register_code(KC_RSFT); Alt = HOLD3; } break; @@ -78,7 +78,7 @@ void altReset(qk_tap_dance_state_t* state, void* user_data) { unregister_code(KC_RALT); break; case HOLD3: - unregister_code(KC_RSHIFT); + unregister_code(KC_RSFT); unregister_code(KC_RALT); break; } -- cgit v1.2.3