From 169b358a2f5a868506086f5b402a7c9e3460ffea Mon Sep 17 00:00:00 2001 From: Jens Bache-Wiig <jensb.bache-wiig@nokia.com> Date: Tue, 12 Jul 2011 15:53:15 +0200 Subject: [PATCH] Updated qwheelarea Change-Id: I1c64902b03b31cb92cce8e83cd2d7a9633d37a08 Reviewed-on: http://codereview.qt.nokia.com/1566 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Daniel Molkentin <daniel.molkentin@nokia.com> --- .../welcomescreen/components/styleitem/qwheelarea.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/qtcreator/welcomescreen/components/styleitem/qwheelarea.cpp b/share/qtcreator/welcomescreen/components/styleitem/qwheelarea.cpp index 64457b5236c..a3610c54c8d 100644 --- a/share/qtcreator/welcomescreen/components/styleitem/qwheelarea.cpp +++ b/share/qtcreator/welcomescreen/components/styleitem/qwheelarea.cpp @@ -163,7 +163,7 @@ qreal QWheelArea::verticalValue() const void QWheelArea::setVerticalDelta(qreal d) { - _verticalDelta = d/15; + _verticalDelta = d/5; setVerticalValue(_verticalValue - _verticalDelta); emit(verticalWheelMoved()); } @@ -175,7 +175,7 @@ qreal QWheelArea::verticalDelta() const void QWheelArea::setHorizontalDelta(qreal d) { - _horizontalDelta = d/15; + _horizontalDelta = d/5; setHorizontalValue(_horizontalValue - _horizontalDelta); emit(horizontalWheelMoved()); } -- GitLab