aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/action_tapping.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/action_tapping.c')
-rw-r--r--tmk_core/common/action_tapping.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmk_core/common/action_tapping.c b/tmk_core/common/action_tapping.c
index 531a3ca34..6280c6c36 100644
--- a/tmk_core/common/action_tapping.c
+++ b/tmk_core/common/action_tapping.c
@@ -263,7 +263,7 @@ bool process_tapping(keyrecord_t *keyp)
263 return true; 263 return true;
264 } 264 }
265 } else { 265 } else {
266 // FIX: process_aciton here? 266 // FIX: process_action here?
267 // timeout. no sequential tap. 267 // timeout. no sequential tap.
268 debug("Tapping: End(Timeout after releasing last tap): "); 268 debug("Tapping: End(Timeout after releasing last tap): ");
269 debug_event(event); debug("\n"); 269 debug_event(event); debug("\n");
@@ -277,6 +277,7 @@ bool process_tapping(keyrecord_t *keyp)
277 if (event.pressed && is_tap_key(event.key)) { 277 if (event.pressed && is_tap_key(event.key)) {
278 debug("Tapping: Start(Press tap key).\n"); 278 debug("Tapping: Start(Press tap key).\n");
279 tapping_key = *keyp; 279 tapping_key = *keyp;
280 process_record_tap_hint(&tapping_key);
280 waiting_buffer_scan_tap(); 281 waiting_buffer_scan_tap();
281 debug_tapping_key(); 282 debug_tapping_key();
282 return true; 283 return true;