From d339cb83fe35e9d02e37085acb2465b23a305d03 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Thu, 4 Jun 2009 18:47:24 +0000 Subject: [PATCH] increase the acceleration when autoscrolling BUG: 194235 svn path=/trunk/KDE/kdebase/apps/; revision=977591 --- src/dolphinviewautoscroller.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dolphinviewautoscroller.cpp b/src/dolphinviewautoscroller.cpp index 10bdebe3d..c5d5e47d7 100644 --- a/src/dolphinviewautoscroller.cpp +++ b/src/dolphinviewautoscroller.cpp @@ -160,9 +160,9 @@ int DolphinViewAutoScroller::calculateScrollIncrement(int cursorPos, int rangeSi { int inc = 0; - const int minSpeed = 2; - const int maxSpeed = 32; - const int speedLimiter = 8; + const int minSpeed = 4; + const int maxSpeed = 64; + const int speedLimiter = 4; const int autoScrollBorder = 32; if (cursorPos < autoScrollBorder) { -- 2.47.3