diff options
author | Jens Bache-Wiig <jens.bache-wiig@nokia.com> | 2009-05-14 13:28:47 (GMT) |
---|---|---|
committer | Jens Bache-Wiig <jens.bache-wiig@nokia.com> | 2009-05-14 13:28:47 (GMT) |
commit | ed52c2f402b99541553aac163029d217f1dcd419 (patch) | |
tree | 63eda93777256cf5d6db5223f58fe58137004204 /src/gui/styles | |
parent | b038c1ac6bdac15b123946821bbff3ee25bfad2b (diff) | |
download | Qt-ed52c2f402b99541553aac163029d217f1dcd419.zip Qt-ed52c2f402b99541553aac163029d217f1dcd419.tar.gz Qt-ed52c2f402b99541553aac163029d217f1dcd419.tar.bz2 |
Remove snapback/maximum drag distance from QSlider
This feature was only intended for QScrollBar and was incorrectly
inherited by QSlider. The only supported platform that use this
feature seems to be Windows so instead of doing a nasty qobject cast
in the styling it makes more sense to remove the functionality
from QSlider entirely.
Task-number: 245681
Reviewed-by: ogoffart
Diffstat (limited to 'src/gui/styles')
-rw-r--r-- | src/gui/styles/qstyle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/styles/qstyle.cpp b/src/gui/styles/qstyle.cpp index b73332f..514f67b 100644 --- a/src/gui/styles/qstyle.cpp +++ b/src/gui/styles/qstyle.cpp @@ -1332,7 +1332,7 @@ void QStyle::drawItemPixmap(QPainter *painter, const QRect &rect, int alignment, \value PM_LayoutVerticalSpacing Default \l{QLayout::spacing}{vertical spacing} for a QLayout. \value PM_MaximumDragDistance The maximum allowed distance between - the mouse and a slider when dragging. Exceeding the specified + the mouse and a scrollbar when dragging. Exceeding the specified distance will cause the slider to jump back to the original position; a value of -1 disables this behavior. |