diff options
Diffstat (limited to 'users/pcoves/tapDance.c')
-rw-r--r-- | users/pcoves/tapDance.c | 4 |
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; } |