Details
-
Bug
-
Resolution: Duplicate
-
P2: Important
-
None
-
5.7
-
None
-
OSX 10.11.4
Description
The content jumps in the middle of a flick. A test case extracted from Qt Quick Controls 2 Gallery:
import QtQuick 2.6 import QtQuick.Window 2.0 Window { id: window width: 360 height: 520 visible: true ListView { id: listview anchors.fill: parent delegate: Text { padding: 12 text: modelData font.pixelSize: 16 width: parent.width } model: ["BusyIndicator", "Button", "CheckBox", "ComboBox", "Dial", "Delegates", "Drawer", "Frame", "GroupBox", "Menu", "PageIndicator", "Popup", "ProgressBar", "RadioButton", "RangeSlider", "ScrollBar", "ScrollIndicator", "Slider", "SpinBox", "StackView", "SwipeView", "Switch", "TabBar", "TextArea", "TextField", "ToolTip", "Tumbler"] } Rectangle { id: scrollbar anchors.right: listview.right y: listview.visibleArea.yPosition * listview.height width: 10 height: listview.visibleArea.heightRatio * listview.height color: "black" } }
Does not seem to happen with Qt 5.6.
Attachments
Issue Links
- duplicates
-
QTBUG-47697 ScrollView bounce broken on Mac OS X (regression)
- Closed
-
QTBUG-53177 Flickable: when flicking quickly with the Apple Trackpad, when it hits the end, it bounces twice
- Closed