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);
>
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
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