summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorDasky <32983009+daskygit@users.noreply.github.com>2022-09-15 07:48:43 +0100
committerGitHub <noreply@github.com>2022-09-14 23:48:43 -0700
commit40b0b3a9830097ac6be2a2acfd2aa3cf7300fd8f (patch)
tree0b1ee0c98a70348750e825ff6c4b9b1dcb2e31e9 /drivers
parent6d39cc858fa638ccaf1892a7b5dda65d1eee3ce8 (diff)
Fix cirque tap from secondary side (#18351)
Diffstat (limited to 'drivers')
-rw-r--r--drivers/sensors/cirque_pinnacle_gestures.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/sensors/cirque_pinnacle_gestures.c b/drivers/sensors/cirque_pinnacle_gestures.c
index a73b745e59..ae3eca71c2 100644
--- a/drivers/sensors/cirque_pinnacle_gestures.c
+++ b/drivers/sensors/cirque_pinnacle_gestures.c
@@ -37,14 +37,6 @@ static report_mouse_t trackpad_tap(report_mouse_t mouse_report, pinnacle_data_t
if (!touchData.zValue) {
if (timer_elapsed(tap.timer) < CIRQUE_PINNACLE_TAPPING_TERM && tap.timer != 0) {
mouse_report.buttons = pointing_device_handle_buttons(mouse_report.buttons, true, POINTING_DEVICE_BUTTON1);
- pointing_device_set_report(mouse_report);
- pointing_device_send();
-# if TAP_CODE_DELAY > 0
- wait_ms(TAP_CODE_DELAY);
-# endif
- mouse_report.buttons = pointing_device_handle_buttons(mouse_report.buttons, false, POINTING_DEVICE_BUTTON1);
- pointing_device_set_report(mouse_report);
- pointing_device_send();
}
}
tap.timer = timer_read();