Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
5.12.6, 6.3.0, 6.5.5, 6.6.3, 6.7.0, 6.8.0
Description
When using a ListView horizontally with layout mirroring enabled, adding data to the ListModel dynamically creates a binding loop if the width is bound to contentWidth to calculate the ListView's size.
import QtQuick 2.5 import QtQuick.Controls 2.5 Item { id: root width: 800 height: 200 ListModel { id: _listModel Component.onCompleted: { ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'].map(function(e) { append({"text":e});}); } } ListView { id: _list width: contentWidth height: 50 anchors.centerIn: parent Rectangle { color: "red" opacity: 0.2 anchors.fill: parent } orientation: ListView.Horizontal LayoutMirroring.enabled: true model: _listModel delegate: Rectangle { width: label.implicitWidth + 20 height: label.implicitHeight border.color: "black" border.width: 2 Text { id: label text: model.text anchors.horizontalCenter: parent.horizontalCenter font.pixelSize: 20 } } } }
Attachments
Issue Links
- relates to
-
QTBUG-69330 When the bounds behavior of a ListView is to stop at bounds, then changing the current index in more than single increments can mean it stops short
-
- Closed
-
Gerrit Reviews
For Gerrit Dashboard: QTBUG-82699 | ||||||
---|---|---|---|---|---|---|
# | Subject | Branch | Project | Status | CR | V |
297804,13 | Flickable: avoid binding loop when setting content[Size] to [size] | dev | qt/qtdeclarative | Status: NEW | 0 | 0 |
302725,2 | WIP: Flickable: avoid binding loop when setting content[Size] to [size] | 5.12 | qt/qtdeclarative | Status: ABANDONED | -2 | 0 |