Fix bug with layer caching in get_event_keycode (#8693)
* Fix bug with layer caching in get_event_keycode * Improve naming
This commit is contained in:
parent
eb7fc7f9d9
commit
23124b9fd1
5 changed files with 16 additions and 13 deletions
|
@ -324,7 +324,7 @@ void process_action(keyrecord_t *record, action_t action) {
|
|||
# if !defined(IGNORE_MOD_TAP_INTERRUPT) || defined(IGNORE_MOD_TAP_INTERRUPT_PER_KEY)
|
||||
if (
|
||||
# ifdef IGNORE_MOD_TAP_INTERRUPT_PER_KEY
|
||||
!get_ignore_mod_tap_interrupt(get_event_keycode(record->event)) &&
|
||||
!get_ignore_mod_tap_interrupt(get_event_keycode(record->event, false)) &&
|
||||
# endif
|
||||
record->tap.interrupted) {
|
||||
dprint("mods_tap: tap: cancel: add_mods\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue