| Submitter | Andy Whitcroft |
|---|---|
| Date | March 30, 2010, 7:40 p.m. |
| Message ID | <1269978023-3602-15-git-send-email-apw@canonical.com> |
| Download | mbox | patch |
| Permalink | /patch/49032/ |
| State | Accepted |
| Delegated to: | Andy Whitcroft |
| Headers | show |
Comments
Patch
diff --git a/drivers/hid/hid-ntrig.c b/drivers/hid/hid-ntrig.c index f6f882d..3234c72 100644 --- a/drivers/hid/hid-ntrig.c +++ b/drivers/hid/hid-ntrig.c @@ -165,6 +165,8 @@ static int ntrig_event (struct hid_device *hid, struct hid_field *field, * to emit a normal (X, Y) position */ if (!nd->reading_mt) { + input_report_key(input, BTN_TOOL_DOUBLETAP, + (nd->confidence != 0)); input_event(input, EV_ABS, ABS_X, nd->x); input_event(input, EV_ABS, ABS_Y, nd->y); }