diff options
author | precondition <57645186+precondition@users.noreply.github.com> | 2022-02-11 20:53:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-11 19:53:26 +0000 |
commit | 7148a69d5ea7d75119c81cf9b7c579f3136c4fd3 (patch) | |
tree | 4a7172b6e068ff7f162ee311b0d64583dbb0a4c7 /quantum/pointing_device_drivers.c | |
parent | 39bec3bfa5ff63ee99f0fd15293967fd8655a154 (diff) |
Pass in the keyrecord_t of the dual-role/tapping key when calling per-key tap hold functions (#15938)
* Replace keyp by &tapping_key in the record arg of per-key tap hold funcs
* Replace NULL by &(keyrecord_t){} in 2nd arg of get_tapping_term
Diffstat (limited to 'quantum/pointing_device_drivers.c')
-rw-r--r-- | quantum/pointing_device_drivers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/pointing_device_drivers.c b/quantum/pointing_device_drivers.c index 4333bbb095..7702958f88 100644 --- a/quantum/pointing_device_drivers.c +++ b/quantum/pointing_device_drivers.c @@ -101,7 +101,7 @@ const pointing_device_driver_t pointing_device_driver = { # ifdef TAPPING_TERM_PER_KEY # include "action.h" # include "action_tapping.h" -# define CIRQUE_PINNACLE_TAPPING_TERM get_tapping_term(KC_BTN1, NULL) +# define CIRQUE_PINNACLE_TAPPING_TERM get_tapping_term(KC_BTN1, &(keyrecord_t){}) # else # ifdef TAPPING_TERM # define CIRQUE_PINNACLE_TAPPING_TERM TAPPING_TERM |