mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-23 08:02:03 +00:00
Give mouse report to pointing_device_task_user first in ploopyco devices (#25475)
This commit is contained in:
parent
6b38dc17cd
commit
5ef7919022
@ -139,6 +139,7 @@ void cycle_dpi(void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
report_mouse_t pointing_device_task_kb(report_mouse_t mouse_report) {
|
report_mouse_t pointing_device_task_kb(report_mouse_t mouse_report) {
|
||||||
|
mouse_report = pointing_device_task_user(mouse_report);
|
||||||
if (is_drag_scroll) {
|
if (is_drag_scroll) {
|
||||||
scroll_accumulated_h += (float)mouse_report.x / PLOOPY_DRAGSCROLL_DIVISOR_H;
|
scroll_accumulated_h += (float)mouse_report.x / PLOOPY_DRAGSCROLL_DIVISOR_H;
|
||||||
scroll_accumulated_v += (float)mouse_report.y / PLOOPY_DRAGSCROLL_DIVISOR_V;
|
scroll_accumulated_v += (float)mouse_report.y / PLOOPY_DRAGSCROLL_DIVISOR_V;
|
||||||
@ -163,7 +164,7 @@ report_mouse_t pointing_device_task_kb(report_mouse_t mouse_report) {
|
|||||||
mouse_report.y = 0;
|
mouse_report.y = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return pointing_device_task_user(mouse_report);
|
return mouse_report;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
|
bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
|
||||||
|
Loading…
Reference in New Issue
Block a user