1
0

Remove deprecated RGB_ and Mouse keycodes (#25444)

* Remove deprecated `RGB_` and Mouse keycodes

* Update old mouse keycodes, 0-9/A-M

* Update old mouse keycodes, N-Z & layouts

* Missed some stuff
This commit is contained in:
Ryan
2025-07-12 03:05:41 +10:00
committed by GitHub
parent 71b88b333d
commit 6b38dc17cd
325 changed files with 911 additions and 964 deletions

View File

@@ -20,9 +20,9 @@
bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_user(index, clockwise)) { return false; }
if (clockwise) {
tap_code(layer_state == 0 ? KC_WH_D : KC_VOLD);
tap_code(layer_state == 0 ? MS_WHLD : KC_VOLD);
} else {
tap_code(layer_state == 0 ? KC_WH_U : KC_VOLU);
tap_code(layer_state == 0 ? MS_WHLU : KC_VOLU);
}
return true;
}