From: Nick Choi Date: Thu, 25 May 2017 20:38:06 +0000 (-0400) Subject: removed need to set customtapping term 0. defaults to 0 already X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b3144112d3b0abb9bf1060185a001e2fb8d8196c;p=qmk_firmware.git removed need to set customtapping term 0. defaults to 0 already --- diff --git a/quantum/process_keycode/process_tap_dance.h b/quantum/process_keycode/process_tap_dance.h index ef05ebda2..f42c154a0 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) { \