[Wayland-bugs] [Bug 103330] Edge exclusion zone too wide for large touchpad
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Wed Oct 25 04:11:03 UTC 2017
https://bugs.freedesktop.org/show_bug.cgi?id=103330
--- Comment #10 from Peter Y. Chuang <peteryuchuang at gmail.com> ---
Also:
/* palm edges are 8% of the width on each side up to a max of 8mm */
mm.x = min(8, width * 0.08);
edges = evdev_device_mm_to_units(device, &mm);
tp->palm.left_edge = edges.x;
mm.x = width * 0.92;
edges = evdev_device_mm_to_units(device, &mm);
tp->palm.right_edge = edges.x;
if (!tp->buttons.has_topbuttons) {
/* top edge is 5% of the height */
mm.y = height * 0.05;
edges = evdev_device_mm_to_units(device, &mm);
tp->palm.upper_edge = edges.y;
It appears that only the left edge has been changed, if I'm not mistaken.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/wayland-bugs/attachments/20171025/fd615934/attachment.html>
More information about the wayland-bugs
mailing list