diff --git a/src/evdev-mt-touchpad-buttons.c b/src/evdev-mt-touchpad-buttons.c index 8c374345..a0ecefd2 100644 --- a/src/evdev-mt-touchpad-buttons.c +++ b/src/evdev-mt-touchpad-buttons.c @@ -1055,15 +1055,21 @@ tp_notify_clickpadbutton(struct tp_dispatch *tp, if (is_topbutton && tp->buttons.trackpoint) { struct evdev_dispatch *dispatch = tp->buttons.trackpoint->dispatch; struct input_event event; + struct input_event syn_report = {{ 0, 0 }, EV_SYN, SYN_REPORT, 0 }; event.time = us2tv(time); event.type = EV_KEY; event.code = button; event.value = (state == LIBINPUT_BUTTON_STATE_PRESSED) ? 1 : 0; + syn_report.time = event.time; dispatch->interface->process(dispatch, tp->buttons.trackpoint, &event, time); + dispatch->interface->process(dispatch, + tp->buttons.trackpoint, + &syn_report, + time); return 1; } diff --git a/src/evdev-mt-touchpad.c b/src/evdev-mt-touchpad.c index 749f9413..8393bece 100644 --- a/src/evdev-mt-touchpad.c +++ b/src/evdev-mt-touchpad.c @@ -502,6 +502,7 @@ tp_process_trackpoint_button(struct tp_dispatch *tp, { struct evdev_dispatch *dispatch; struct input_event event; + struct input_event syn_report = {{ 0, 0 }, EV_SYN, SYN_REPORT, 0 }; if (!tp->buttons.trackpoint) return; @@ -509,6 +510,7 @@ tp_process_trackpoint_button(struct tp_dispatch *tp, dispatch = tp->buttons.trackpoint->dispatch; event = *e; + syn_report.time = e->time; switch (event.code) { case BTN_0: @@ -527,6 +529,9 @@ tp_process_trackpoint_button(struct tp_dispatch *tp, dispatch->interface->process(dispatch, tp->buttons.trackpoint, &event, time); + dispatch->interface->process(dispatch, + tp->buttons.trackpoint, + &syn_report, time); } static void