https://bugs.freedesktop.org/show_bug.cgi?id=103208

--- Comment #11 from Peter Y. Chuang <peteryuchu...@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.
_______________________________________________
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs

Reply via email to