Skip to content

Commit

Permalink
Merge pull request qmk#28 from LoliPain/ws69userprocessing
Browse files Browse the repository at this point in the history
add `process_record_user` call into `process_record_kb`
  • Loading branch information
jiaxin96 authored Nov 18, 2022
2 parents 814c135 + 9ab7740 commit 5e90930
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions keyboards/yandrstudio/wired/whitemouse69pro/whitemouse69pro.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ 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:
Expand Down

0 comments on commit 5e90930

Please sign in to comment.