diff options
| author | Ryan | 2024-10-12 18:43:50 +0200 |
|---|---|---|
| committer | GitHub | 2024-10-12 18:43:50 +0200 |
| commit | 6fa11bf21913b5ccb531acc3c2baec963f4d384a (patch) | |
| tree | aaf6188a4579949cc1fbac61d0fee5234b97996a /keyboards/annepro2 | |
| parent | 5c97a78ce6ab45643dcb420ba2ad20c30dcd5b8a (diff) | |
Separate RGBLight/RGB Matrix keycode handling (#23679)
* Separate RGBLight/RGB Matrix keycode handling
* Remove `_DISABLE_KEYCODES` handling
* Update RGB Matrix keycode docs
* Update underglow keycodes for previously migrated boards
* Update keycodes for boards with custom handling
* Fix typos
* Fix bad merge
Diffstat (limited to 'keyboards/annepro2')
| -rw-r--r-- | keyboards/annepro2/annepro2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/annepro2/annepro2.c b/keyboards/annepro2/annepro2.c index 170eb8c175..f536690de3 100644 --- a/keyboards/annepro2/annepro2.c +++ b/keyboards/annepro2/annepro2.c @@ -211,7 +211,7 @@ bool process_record_kb(uint16_t keycode, keyrecord_t *record) { ap2_led_reset_foreground_color(); return false; #ifdef RGB_MATRIX_ENABLE - case RGB_TOG: + case QK_RGB_MATRIX_TOGGLE: if(rgb_matrix_is_enabled()) ap2_led_disable(); else ap2_led_enable(); return true; |