Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/pckbport synaptics: Lower scale factor to give less ...
details: https://anonhg.NetBSD.org/src/rev/63599d2fffaf
branches: trunk
changeset: 371213:63599d2fffaf
user: nia <nia%NetBSD.org@localhost>
date: Wed Sep 28 16:43:00 2022 +0000
description:
synaptics: Lower scale factor to give less sluggish mouse performance
on modern displays.
diffstat:
sys/dev/pckbport/synaptics.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (29 lines):
diff -r 1576b174dad4 -r 63599d2fffaf sys/dev/pckbport/synaptics.c
--- a/sys/dev/pckbport/synaptics.c Wed Sep 28 16:34:47 2022 +0000
+++ b/sys/dev/pckbport/synaptics.c Wed Sep 28 16:43:00 2022 +0000
@@ -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_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;
Home |
Main Index |
Thread Index |
Old Index