diff options
author | Drashna Jaelre <drashna@live.com> | 2019-10-24 12:08:29 -0700 |
---|---|---|
committer | Joel Challis <git@zvecr.com> | 2019-10-24 20:08:29 +0100 |
commit | 335dd0271e344fec1a0f086b34da6f8ae0d8bd60 (patch) | |
tree | 9e3cd1f393b0545d46b3d79f8a273f95dbc03ba0 | |
parent | a5a31a5fc0f14f4f66cf362ee85747be159e364d (diff) |
Fix Tap Dance name for consistency and to match docs (#7136)
-rw-r--r-- | quantum/process_keycode/process_tap_dance.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/process_keycode/process_tap_dance.h b/quantum/process_keycode/process_tap_dance.h index 8d227dfd70..8f3f3ff3c6 100644 --- a/quantum/process_keycode/process_tap_dance.h +++ b/quantum/process_keycode/process_tap_dance.h @@ -65,7 +65,7 @@ typedef struct { # define ACTION_TAP_DANCE_DUAL_ROLE(kc, layer) \ { .fn = { qk_tap_dance_dual_role_on_each_tap, qk_tap_dance_dual_role_finished, qk_tap_dance_dual_role_reset }, .user_data = (void *)&((qk_tap_dance_dual_role_t) { kc, layer, layer_move }), } -# define ACTION_TAP_DANCE_TOGGLE_LAYER(kc, layer) \ +# define ACTION_TAP_DANCE_LAYER_TOGGLE(kc, layer) \ { .fn = { NULL, qk_tap_dance_dual_role_finished, qk_tap_dance_dual_role_reset }, .user_data = (void *)&((qk_tap_dance_dual_role_t) { kc, layer, layer_invert }), } # define ACTION_TAP_DANCE_LAYER_MOVE(kc, layer) ACTION_TAP_DANCE_DUAL_ROLE(kc, layer) |