From 20acaefacad1ab9befd0ebaecbde22b68f0656ea Mon Sep 17 00:00:00 2001 From: nia Date: Wed, 28 Sep 2022 16:43:00 +0000 Subject: synaptics: Lower scale factor to give less sluggish mouse performance on modern displays. --- sys/dev/pckbport/synaptics.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/pckbport/synaptics.c b/sys/dev/pckbport/synaptics.c index 0516d62a8b0..76582c93018 100644 --- a/sys/dev/pckbport/synaptics.c +++ b/sys/dev/pckbport/synaptics.c @@ -1,4 +1,4 @@ -/* $NetBSD: synaptics.c,v 1.80 2022/09/17 06:33:55 mlelstv Exp $ */ +/* $NetBSD: synaptics.c,v 1.81 2022/09/28 16:43:00 nia Exp $ */ /* * Copyright (c) 2005, Steve C. Woodford @@ -48,7 +48,7 @@ #include "opt_pms.h" #include -__KERNEL_RCSID(0, "$NetBSD: synaptics.c,v 1.80 2022/09/17 06:33:55 mlelstv Exp $"); +__KERNEL_RCSID(0, "$NetBSD: synaptics.c,v 1.81 2022/09/28 16:43:00 nia Exp $"); #include #include @@ -119,8 +119,8 @@ static int synaptics_button_boundary; static int synaptics_button2; static int synaptics_button3; static int synaptics_two_fingers_emul = 0; -static int synaptics_scale_x = 16; -static int synaptics_scale_y = 16; +static int synaptics_scale_x = 8; +static int synaptics_scale_y = 8; static int synaptics_scale_z = 32; static int synaptics_max_speed_x = 32; static int synaptics_max_speed_y = 32; -- cgit