1
0
Fork 0

Remove legacy locking caps/num/scroll keycodes (#18601)

This commit is contained in:
Ryan 2022-10-06 02:21:40 +11:00 committed by GitHub
parent ee0a2b5d49
commit d1b6b06202
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 13 deletions

View file

@ -687,9 +687,9 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
if ((capslock_state & MOD_MASK_SHIFT) == MOD_MASK_SHIFT) {
// CAPSLOCK is currently active, disable it
if (host_keyboard_leds() & (1 << USB_LED_CAPS_LOCK)) {
unregister_code(KC_LOCKING_CAPS);
unregister_code(KC_LOCKING_CAPS_LOCK);
} else {
register_code(KC_LOCKING_CAPS);
register_code(KC_LOCKING_CAPS_LOCK);
}
return false;
}