Enabling Pointing Device support in register code functions (#18363)
This commit is contained in:
parent
d909038b28
commit
fb400f2ac2
8 changed files with 17 additions and 57 deletions
|
@ -303,16 +303,6 @@ bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
|
|||
break;
|
||||
}
|
||||
# endif // !NO_CHARYBDIS_KEYCODES
|
||||
# ifndef MOUSEKEY_ENABLE
|
||||
// Simulate mouse keys if full support is not enabled (reduces firmware size
|
||||
// while maintaining support for mouse keys).
|
||||
if (IS_MOUSEKEY_BUTTON(keycode)) {
|
||||
report_mouse_t mouse_report = pointing_device_get_report();
|
||||
mouse_report.buttons = pointing_device_handle_buttons(mouse_report.buttons, record->event.pressed, keycode - KC_MS_BTN1);
|
||||
pointing_device_set_report(mouse_report);
|
||||
pointing_device_send();
|
||||
}
|
||||
# endif // !MOUSEKEY_ENABLE
|
||||
# endif // POINTING_DEVICE_ENABLE
|
||||
if ((keycode >= POINTER_DEFAULT_DPI_FORWARD && keycode < CHARYBDIS_SAFE_RANGE) || IS_MOUSEKEY(keycode)) {
|
||||
debug_charybdis_config_to_console(&g_charybdis_config);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue