diff options
author | Nick Choi <iinikchi@gmail.com> | 2017-05-25 16:38:06 -0400 |
---|---|---|
committer | Nick Choi <iinikchi@gmail.com> | 2017-05-25 16:38:06 -0400 |
commit | b3144112d3b0abb9bf1060185a001e2fb8d8196c (patch) | |
tree | 2c3be650806e489dbcf30825bcb5a2455ef7c521 | |
parent | 7c8b166cce8bf5df058913acc07cd6505f83684a (diff) |
removed need to set customtapping term 0. defaults to 0 already
-rw-r--r-- | quantum/process_keycode/process_tap_dance.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/quantum/process_keycode/process_tap_dance.h b/quantum/process_keycode/process_tap_dance.h index ef05ebda24..f42c154a05 100644 --- a/quantum/process_keycode/process_tap_dance.h +++ b/quantum/process_keycode/process_tap_dance.h @@ -67,7 +67,6 @@ typedef struct #define ACTION_TAP_DANCE_FN_ADVANCED(user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset) { \ .fn = { user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset }, \ .user_data = NULL, \ - .custom_tapping_term = 0, \ } #define ACTION_TAP_DANCE_FN_ADVANCED_TIME(user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset, tap_specific_tapping_term) { \ |