diff options
author | Pavlos Vinieratos <pvinis@gmail.com> | 2016-07-19 18:02:13 +0200 |
---|---|---|
committer | Pavlos Vinieratos <pvinis@gmail.com> | 2016-07-19 18:18:57 +0200 |
commit | 4e6a8627d8ebd7af942f68142d1a959d60361d90 (patch) | |
tree | 5074f65a0cf9029a456d473120d2f42d8f702dae /quantum/process_keycode | |
parent | d5daec2a58019ebdb9804787e0f786e4fc3c05b9 (diff) | |
download | firmware-4e6a8627d8ebd7af942f68142d1a959d60361d90.tar.gz firmware-4e6a8627d8ebd7af942f68142d1a959d60361d90.tar.bz2 firmware-4e6a8627d8ebd7af942f68142d1a959d60361d90.zip |
add a couple of comments
Diffstat (limited to 'quantum/process_keycode')
-rw-r--r-- | quantum/process_keycode/process_tap_dance.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_tap_dance.c b/quantum/process_keycode/process_tap_dance.c index 58192413f..b9b836df2 100644 --- a/quantum/process_keycode/process_tap_dance.c +++ b/quantum/process_keycode/process_tap_dance.c @@ -86,6 +86,7 @@ bool process_tap_dance(uint16_t keycode, keyrecord_t *record) { default: if (qk_tap_dance_state.keycode) { + // if we are here, the tap dance was interrupted by a different key process_tap_dance_action_on_each_tap (qk_tap_dance_state.keycode); process_tap_dance_action_on_dance_finished (qk_tap_dance_state.keycode); reset_tap_dance (&qk_tap_dance_state); @@ -98,6 +99,7 @@ bool process_tap_dance(uint16_t keycode, keyrecord_t *record) { void matrix_scan_tap_dance () { if (qk_tap_dance_state.keycode && timer_elapsed (qk_tap_dance_state.timer) > TAPPING_TERM) { + // if we are here, the tap dance was timed out process_tap_dance_action_on_dance_finished (qk_tap_dance_state.keycode); reset_tap_dance (&qk_tap_dance_state); } |