diff options
-rw-r--r-- | tmk_core/common/action_tapping.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/action_tapping.c b/tmk_core/common/action_tapping.c index e0f524ad7..8531dff36 100644 --- a/tmk_core/common/action_tapping.c +++ b/tmk_core/common/action_tapping.c | |||
@@ -111,7 +111,7 @@ bool process_tapping(keyrecord_t *keyp) { | |||
111 | * This can register the key before settlement of tapping, | 111 | * This can register the key before settlement of tapping, |
112 | * useful for long TAPPING_TERM but may prevent fast typing. | 112 | * useful for long TAPPING_TERM but may prevent fast typing. |
113 | */ | 113 | */ |
114 | # if defined(TAPPING_TERM_PER_KEY) || (!defined(PER_KEY_TAPPING_TERM) && TAPPING_TERM >= 500) || defined(PERMISSIVE_HOLD) | 114 | # if defined(TAPPING_TERM_PER_KEY) || (TAPPING_TERM >= 500) || defined(PERMISSIVE_HOLD) |
115 | # ifdef TAPPING_TERM_PER_KEY | 115 | # ifdef TAPPING_TERM_PER_KEY |
116 | else if ((get_tapping_term(get_event_keycode(tapping_key.event)) >= 500) && IS_RELEASED(event) && waiting_buffer_typed(event)) | 116 | else if ((get_tapping_term(get_event_keycode(tapping_key.event)) >= 500) && IS_RELEASED(event) && waiting_buffer_typed(event)) |
117 | # else | 117 | # else |