Details
-
Bug
-
Resolution: Cannot Reproduce
-
P3: Somewhat important
-
4.7.0, 5.3.0
-
None
-
a0b531163a79c9097185b580fdf4aa8157cead41
Description
Trying to scroll a Flickable whose content is less than the height of the flickable, and which is set to boundsBehavior: Flickable.StopAtBounds makes the Flickable content jump at the bottom.
Steps to reproduce :
1. Run the code below in qmlviewer.exe
2. Try to flick down the list, as if you were trying to display the next items
3. Observe that the content jumps to the bottom of the window
import QtQuick 2.0 Rectangle { width: 200 height: 200 Flickable { anchors.fill: parent contentHeight: contentItem.childrenRect.height boundsBehavior: Flickable.StopAtBounds // Commenting out this removes the buggy behavior Column { Repeater { model: 10 Text {text: "item" + index} } } } }