aboutsummaryrefslogtreecommitdiff
path: root/quantum/process_keycode/process_tap_dance.c
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/process_keycode/process_tap_dance.c')
-rw-r--r--quantum/process_keycode/process_tap_dance.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/quantum/process_keycode/process_tap_dance.c b/quantum/process_keycode/process_tap_dance.c
index 16756e59c..0c7b6353e 100644
--- a/quantum/process_keycode/process_tap_dance.c
+++ b/quantum/process_keycode/process_tap_dance.c
@@ -16,10 +16,6 @@
16#include "quantum.h" 16#include "quantum.h"
17#include "action_tapping.h" 17#include "action_tapping.h"
18 18
19#ifndef TAPPING_TERM
20# define TAPPING_TERM 200
21#endif
22
23#ifndef NO_ACTION_ONESHOT 19#ifndef NO_ACTION_ONESHOT
24uint8_t get_oneshot_mods(void); 20uint8_t get_oneshot_mods(void);
25#endif 21#endif
@@ -171,7 +167,7 @@ void matrix_scan_tap_dance() {
171 if (action->custom_tapping_term > 0) { 167 if (action->custom_tapping_term > 0) {
172 tap_user_defined = action->custom_tapping_term; 168 tap_user_defined = action->custom_tapping_term;
173 } else { 169 } else {
174 tap_user_defined = TAPPING_TERM; 170 tap_user_defined = get_tapping_term(action->state.keycode, NULL);
175 } 171 }
176 if (action->state.count && timer_elapsed(action->state.timer) > tap_user_defined) { 172 if (action->state.count && timer_elapsed(action->state.timer) > tap_user_defined) {
177 process_tap_dance_action_on_dance_finished(action); 173 process_tap_dance_action_on_dance_finished(action);