From: Drashna Jaelre Date: Thu, 24 Oct 2019 19:08:29 +0000 (-0700) Subject: Fix Tap Dance name for consistency and to match docs (#7136) X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=335dd0271e344fec1a0f086b34da6f8ae0d8bd60;p=qmk_firmware.git Fix Tap Dance name for consistency and to match docs (#7136) --- diff --git a/quantum/process_keycode/process_tap_dance.h b/quantum/process_keycode/process_tap_dance.h index 8d227dfd7..8f3f3ff3c 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)