Browse Source

Fix Tap Dance name for consistency and to match docs (#7136)

pull/7145/head
Drashna Jaelre 4 years ago
committed by Joel Challis
parent
commit
335dd0271e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      quantum/process_keycode/process_tap_dance.h

+ 1
- 1
quantum/process_keycode/process_tap_dance.h View File

@ -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)


Loading…
Cancel
Save