diff options
author | Ryan <fauxpark@gmail.com> | 2024-07-03 18:35:54 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-03 18:35:54 +1000 |
commit | f8596b40a4bb15a1881138baa8b8787277e2e622 (patch) | |
tree | 551e145c341b2a7e9f8ee9f2573f4f1e8ebbfbe9 /quantum/pointing_device/pointing_device.c | |
parent | bc0c69570b8a8b1d9a754a280053e49a825b24d7 (diff) |
Normalise mouse keycodes (#23975)
Diffstat (limited to 'quantum/pointing_device/pointing_device.c')
-rw-r--r-- | quantum/pointing_device/pointing_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/pointing_device/pointing_device.c b/quantum/pointing_device/pointing_device.c index 4682aceb14..74ce9108a9 100644 --- a/quantum/pointing_device/pointing_device.c +++ b/quantum/pointing_device/pointing_device.c @@ -498,7 +498,7 @@ __attribute__((weak)) report_mouse_t pointing_device_task_combined_user(report_m __attribute__((weak)) void pointing_device_keycode_handler(uint16_t keycode, bool pressed) { if IS_MOUSEKEY_BUTTON (keycode) { - local_mouse_report.buttons = pointing_device_handle_buttons(local_mouse_report.buttons, pressed, keycode - KC_MS_BTN1); + local_mouse_report.buttons = pointing_device_handle_buttons(local_mouse_report.buttons, pressed, keycode - QK_MOUSE_BUTTON_1); pointing_device_send(); } } |