Various fixes for keyboards not implementing callbacks correctly (#24092)
This commit is contained in:
parent
23c4704123
commit
e0809eade5
14 changed files with 58 additions and 16 deletions
|
@ -97,6 +97,10 @@ void keyboard_post_init_kb(void) {
|
|||
#endif
|
||||
|
||||
bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
|
||||
if (!process_record_user(keycode, record)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
switch(keycode) {
|
||||
#ifdef RGB_MATRIX_ENABLE
|
||||
case URGB_K:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue