Qt 6.11 is out! See what's new in the release
blog
Slowing down QScrollArea
-
I have a QScrollBar (QGraphicsView, actually) and am trying to slow down the wheel scroll speed. Any idea how to do this? This didn't have any effect:
verticalScrollBar()->setSingleStep(2) -
Hi,
Based on the implementation, there's no properties you can set for that.
One possibility would be to subclass QScrollBar and in the wheel event handler create a new QWheelEvent that is slower.
Hope it helps