Fix functions when NO_ACTION_TAPPING
is defined (#11528)
This commit is contained in:
@ -128,7 +128,11 @@ __attribute__((weak)) bool process_autocorrect_user(uint16_t *keycode, keyrecord
|
||||
#ifdef SWAP_HANDS_ENABLE
|
||||
// Note: IS_SWAP_HANDS_KEYCODE() actually tests for the special action keycodes like SH_TOGG, SH_TT, ...,
|
||||
// which currently overlap the SH_T(kc) range.
|
||||
if (IS_SWAP_HANDS_KEYCODE(*keycode) || !record->tap.count) {
|
||||
if (IS_SWAP_HANDS_KEYCODE(*keycode)
|
||||
# ifndef NO_ACTION_TAPPING
|
||||
|| !record->tap.count
|
||||
# endif // NO_ACTION_TAPPING
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
*keycode = QK_SWAP_HANDS_GET_TAP_KEYCODE(*keycode);
|
||||
|
Reference in New Issue
Block a user