Details
-
Bug
-
Resolution: Fixed
-
P1: Critical
-
dev
-
None
-
e034a18df (dev), 9166817b8 (6.6)
Description
Setting "boundsBehavior: Flickable.StopAtBounds" doesn't currently work with mouse wheel. Code below works still with Qt 6.5.1 but not with qtdeclarative dev.
import QtQuick import QtQuick.Window Window { width: 640 height: 480 visible: true title: qsTr("Flickable boundsBehavior test") Flickable { id: flickable anchors.fill: parent boundsBehavior: Flickable.StopAtBounds contentHeight: contentItem.height Column { id: contentItem width: parent.width Repeater { model: 20 Rectangle { width: flickable.width height: 60 color: (index % 2 == 0) ? "red" : "green" } } } } }
Attachments
Issue Links
- relates to
-
QTBUG-121349 Flickable: strange defaults for mouse wheel triggered boundsMovement
- Closed