Re: [PATCH libinput] touchpad: cap the edge palm detection zones at 8mm

2017-10-23 Thread Daniel Martin
are 8% of the width on each side */ > - mm.x = width * 0.08; > + /* palm edges are 8% of the width on each side up to a max of 7mm */ s/7mm/8mm/ > + mm.x = min(8, width * 0.08); > edges = evdev_device_mm_to_units(device, &mm); >

Re: [PATCH libinput] evdev: add quirk for the HP85810 touchpad

2016-08-31 Thread Daniel Martin
On 31 August 2016 at 02:27, Peter Hutterer wrote: > The touchpad's says it can do two- and three-finger detection but it never > sends events for it. Disable them so we treat it as pure single-finger > touchpad. > > https://bugzilla.redhat.com/show_bug.cgi?id=1351285 > > Signed-off-by: Peter Hutte

Re: [PATCH libinput] touchpad: implement edge-based basic palm detection

2014-07-10 Thread Daniel Martin
On Fri, Jul 11, 2014 at 11:08:53AM +1000, Peter Hutterer wrote: > A large part of palm events are situated on the far edges of the touchpad. In > a test run on a T440s while typing a long email all but 2 touch points were > located in the outer ~5% of the touchpad. Define a 10% exclusion zone on th