summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-11-13 13:29:00 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2017-11-14 12:04:27 +1000
commitdc7fb65db5ff80612fab83d0bdcadd99d55edff8 (patch)
tree9fea0ace4b44e9713c2717815ca143b16731db45
parent5561108ac4262a2c6dc8f087cd1751e79f1f3796 (diff)
touchpad: post a SYN_REPORT after a faked trackpoint button
This has no real effect at the moment because the fallback interface doesn't care much about SYN_REPORT, it processes events as they come in. But it's a bug nonetheless, the process() callback expects correct event frames. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--src/evdev-mt-touchpad-buttons.c6
-rw-r--r--src/evdev-mt-touchpad.c5
2 files changed, 11 insertions, 0 deletions
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 a7dad940..37ae8503 100644
--- a/src/evdev-mt-touchpad.c
+++ b/src/evdev-mt-touchpad.c
@@ -521,6 +521,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;
@@ -528,6 +529,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:
@@ -546,6 +548,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