From 67fbc257c0fd943d72a5bf1ba1e2766f4477019b Mon Sep 17 00:00:00 2001 From: Henrik Rydberg Date: Sat, 16 Oct 2010 16:13:59 +0200 Subject: Increase vscroll speed by a factor of two The default two-finger scroll is somewhat slow; double it. Signed-off-by: Henrik Rydberg --- driver/multitouch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/multitouch.c b/driver/multitouch.c index f232914..c9b8bce 100644 --- a/driver/multitouch.c +++ b/driver/multitouch.c @@ -27,7 +27,7 @@ #endif /* these should be user-configurable at some point */ -static const float vscroll_fraction = 0.05; +static const float vscroll_fraction = 0.025; static const float hscroll_fraction = 0.05; static const float vswipe_fraction = 0.25; static const float hswipe_fraction = 0.25; -- cgit v1.2.3