diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-09-21 15:55:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-21 15:55:18 -0400 |
commit | bd57faa7bf21e7ef9a381b7a354c3b3bdf5065e8 (patch) | |
tree | 1038538d465205741114ede7f57a9f7d6eb9f215 /quantum/process_keycode/process_tap_dance.c | |
parent | 3dc1f39d4028e18c5b11101e4f0d492e26d0cba5 (diff) | |
parent | cda4b534fa4921c2d8f9884aa6a144333e7b07c4 (diff) |
Merge pull request #769 from pvinis/fix/tap-dance-each-tap-restore
[tap dance] restore each_tap functionality
Diffstat (limited to 'quantum/process_keycode/process_tap_dance.c')
-rw-r--r-- | quantum/process_keycode/process_tap_dance.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_tap_dance.c b/quantum/process_keycode/process_tap_dance.c index 79ade4d000..6ae362c4c2 100644 --- a/quantum/process_keycode/process_tap_dance.c +++ b/quantum/process_keycode/process_tap_dance.c @@ -70,6 +70,7 @@ bool process_tap_dance(uint16_t keycode, keyrecord_t *record) { action->state.keycode = keycode; action->state.count++; action->state.timer = timer_read(); + process_tap_dance_action_on_each_tap (action); if (last_td && last_td != keycode) { qk_tap_dance_action_t *paction = &tap_dance_actions[last_td - QK_TAP_DANCE]; |