diff options
| author | Peter Penz <[email protected]> | 2009-06-04 18:47:24 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2009-06-04 18:47:24 +0000 |
| commit | d339cb83fe35e9d02e37085acb2465b23a305d03 (patch) | |
| tree | fd492488b98cd329b12f20cbe52ba3e3e8e2faac /src/dolphinviewautoscroller.cpp | |
| parent | 83e89e112ebdf38042bbc961f3de87df835ec269 (diff) | |
increase the acceleration when autoscrolling
BUG: 194235
svn path=/trunk/KDE/kdebase/apps/; revision=977591
Diffstat (limited to 'src/dolphinviewautoscroller.cpp')
| -rw-r--r-- | src/dolphinviewautoscroller.cpp | 6 |
1 files 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) { |
