diff options
| author | nia <nia@NetBSD.org> | 2022-09-28 16:43:00 +0000 |
|---|---|---|
| committer | nia <nia@NetBSD.org> | 2022-09-28 16:43:00 +0000 |
| commit | 20acaefacad1ab9befd0ebaecbde22b68f0656ea (patch) | |
| tree | 5c20bf2cdaa515bbd4a56ef8beb583650ad5e1d7 /sys/dev | |
| parent | 0f816dc9b17b3e254d50e477c4594fc61580e889 (diff) | |
synaptics: Lower scale factor to give less sluggish mouse performance
on modern displays.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/pckbport/synaptics.c | 8 |
1 files changed, 4 insertions, 4 deletions
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 <sys/cdefs.h> -__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 <sys/param.h> #include <sys/systm.h> @@ -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; |
