Allow userspace the opportunity to handle keycodes

This commit is contained in:
jshuf 2019-07-17 14:52:46 -04:00 committed by noroadsleft
parent f9d47ebe2f
commit 1650ba00f1
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
}
#endif //DYNAMIC_KEYMAP_ENABLE
return true;
return process_record_user(keycode, record);;
}