summaryrefslogtreecommitdiffstats
path: root/quantum/process_keycode/process_tap_dance.c
diff options
context:
space:
mode:
authorDamien <Dbroqua@users.noreply.github.com>2016-09-19 13:25:37 +0200
committerGitHub <noreply@github.com>2016-09-19 13:25:37 +0200
commitc438a2a265b366c8e4594ce561feb896018983f0 (patch)
treef310e72223a25414f69c2dec70509fed26dc3960 /quantum/process_keycode/process_tap_dance.c
parentaf24ea558a65fea549bd9f57a9704b904972d2f7 (diff)
parent5f9c2f63ffb2c58db73e67442134be58bfe2c129 (diff)
downloadqmk_firmware-c438a2a265b366c8e4594ce561feb896018983f0.tar.gz
qmk_firmware-c438a2a265b366c8e4594ce561feb896018983f0.tar.xz
Merge pull request #4 from jackhumbert/master
Merge from jackhumbert
Diffstat (limited to 'quantum/process_keycode/process_tap_dance.c')
-rw-r--r--quantum/process_keycode/process_tap_dance.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/quantum/process_keycode/process_tap_dance.c b/quantum/process_keycode/process_tap_dance.c
index 07de3ecb8..79ade4d00 100644
--- a/quantum/process_keycode/process_tap_dance.c
+++ b/quantum/process_keycode/process_tap_dance.c
@@ -65,9 +65,9 @@ bool process_tap_dance(uint16_t keycode, keyrecord_t *record) {
highest_td = idx;
action = &tap_dance_actions[idx];
- action->state.keycode = keycode;
action->state.pressed = record->event.pressed;
if (record->event.pressed) {
+ action->state.keycode = keycode;
action->state.count++;
action->state.timer = timer_read();
@@ -77,8 +77,9 @@ bool process_tap_dance(uint16_t keycode, keyrecord_t *record) {
process_tap_dance_action_on_dance_finished (paction);
reset_tap_dance (&paction->state);
}
+
+ last_td = keycode;
}
- last_td = keycode;
break;