diff options
author | Joel Challis <git@zvecr.com> | 2023-12-24 06:52:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-24 06:52:41 +0000 |
commit | b824faca71e1db86c158a0e09f225410c1e7e0a8 (patch) | |
tree | 21a77608c53feb71dea650714cf794cc42e4a4ae /docs | |
parent | 03848bb3aae551b11dd3da5ee33a41f2f1543a33 (diff) |
Align location of tap dance keycode (#22742)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_tap_dance.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_tap_dance.md b/docs/feature_tap_dance.md index 42ea233962..bb1c2c8034 100644 --- a/docs/feature_tap_dance.md +++ b/docs/feature_tap_dance.md @@ -173,7 +173,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { switch (keycode) { case TD(CT_CLN): // list all tap dance keycodes with tap-hold configurations - action = &tap_dance_actions[TD_INDEX(keycode)]; + action = &tap_dance_actions[QK_TAP_DANCE_GET_INDEX(keycode)]; if (!record->event.pressed && action->state.count && !action->state.finished) { tap_dance_tap_hold_t *tap_hold = (tap_dance_tap_hold_t *)action->user_data; tap_code16(tap_hold->tap); |