Hi,
On 07-03-17 04:22, Peter Hutterer wrote:
https://bugs.freedesktop.org/show_bug.cgi?id=99975
Signed-off-by: Peter Hutterer <peter.hutte...@who-t.net>
Patch looks good to me:
Reviewed-by: Hans de Goede <hdego...@redhat.com>
Regards,
Hans
---
src/evdev-mt-touchpad.c | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/src/evdev-mt-touchpad.c b/src/evdev-mt-touchpad.c
index c8e434e..e2866df 100644
--- a/src/evdev-mt-touchpad.c
+++ b/src/evdev-mt-touchpad.c
@@ -2382,9 +2382,14 @@ tp_init_pressure(struct tp_dispatch *tp,
range = abs->maximum - abs->minimum;
- /* Approximately the synaptics defaults */
- tp->pressure.high = abs->minimum + 0.12 * range;
- tp->pressure.low = abs->minimum + 0.10 * range;
+ if (device->model_flags & EVDEV_MODEL_ELANTECH_TOUCHPAD) {
+ tp->pressure.high = 24;
+ tp->pressure.low = 10;
+ } else {
+ /* Approximately the synaptics defaults */
+ tp->pressure.high = abs->minimum + 0.12 * range;
+ tp->pressure.low = abs->minimum + 0.10 * range;
+ }
evdev_log_debug(device,
"using pressure-based touch detection\n",
_______________________________________________
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-devel