aboutsummaryrefslogtreecommitdiff
path: root/quantum
diff options
context:
space:
mode:
Diffstat (limited to 'quantum')
-rw-r--r--quantum/process_keycode/process_tap_dance.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_tap_dance.h b/quantum/process_keycode/process_tap_dance.h
index 49b06e450..f753cbba6 100644
--- a/quantum/process_keycode/process_tap_dance.h
+++ b/quantum/process_keycode/process_tap_dance.h
@@ -44,10 +44,12 @@ typedef struct
44 44
45#define ACTION_TAP_DANCE_FN(user_fn) { \ 45#define ACTION_TAP_DANCE_FN(user_fn) { \
46 .fn = { NULL, user_fn, NULL }, \ 46 .fn = { NULL, user_fn, NULL }, \
47 .user_data = NULL, \
47 } 48 }
48 49
49#define ACTION_TAP_DANCE_FN_ADVANCED(user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset) { \ 50#define ACTION_TAP_DANCE_FN_ADVANCED(user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset) { \
50 .fn = { user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset }, \ 51 .fn = { user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset }, \
52 .user_data = NULL, \
51 } 53 }
52 54
53extern qk_tap_dance_action_t tap_dance_actions[]; 55extern qk_tap_dance_action_t tap_dance_actions[];