From: Peter Penz Date: Thu, 4 Jun 2009 18:47:24 +0000 (+0000) Subject: increase the acceleration when autoscrolling X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/d339cb83fe35e9d02e37085acb2465b23a305d03 increase the acceleration when autoscrolling BUG: 194235 svn path=/trunk/KDE/kdebase/apps/; revision=977591 --- 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) {