summaryrefslogtreecommitdiff
path: root/users/pcoves/tapDance.c
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2022-10-17 00:14:40 +1100
committerGitHub <noreply@github.com>2022-10-16 14:14:40 +0100
commit74223c34a969c0877bde035c721c21a1f25890fa (patch)
tree1daea9db13a0adb529e5aba4aa1e6f893cb7ed8c /users/pcoves/tapDance.c
parent39c22f5cf5011427ece26c510d0b1ab42edf34db (diff)
Remove legacy keycodes, part 6 (#18740)
* `KC_RSHIFT` -> `KC_RSFT` * `KC_RCTRL` -> `KC_RCTL` * `KC_LSHIFT` -> `KC_LSFT` * `KC_LCTRL` -> `KC_LCTL`
Diffstat (limited to 'users/pcoves/tapDance.c')
-rw-r--r--users/pcoves/tapDance.c4
1 files changed, 2 insertions, 2 deletions
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;
}