-
Bug
-
Resolution: Unresolved
-
P4: Low
-
None
-
5.4.2, 5.5.0, 6.8.0
-
None
-
Windows 8.1 Pro (mingw492_32)
Steps to occur problem in the example appplication:
1. Scroll down.
2. Spacing between delegates is irregular
import QtQuick 2.4
import QtQuick.Controls 1.3
import QtQuick.Window 2.2
ApplicationWindow {
title: qsTr("Example 2")
width: 640
height: 480
visible: true
toolBar: Text {
width: toolBar.width
wrapMode: Text.WordWrap
text: "Description: Scroll down. Spacing between delegates is invalid"
}
ScrollView {
anchors { fill: parent }
flickableItem.interactive: true
ListView {
id: listView
anchors { fill: parent }
spacing: 10
model: 1000000
delegate: Rectangle {
width: listView.width
height: 90 //e.g. for 118 layouting work correctly (118 + 10(spacing) = 128) ?
border.color: "black"
color: "gray"
Text {
anchors.centerIn: parent
color: "black"
text: index
}
}
}
}
}
- is duplicated by
-
QTBUG-82603 Scrolling TableView/ListView with huge number of rows
-
- Closed
-
-
QTBUG-77986 TableView wrong delegate positioning
-
- Closed
-
- relates to
-
QTBUG-55062 QtQuick ListView: Render Artefacts with huge models
-
- Reported
-
-
QTBUG-43193 ListView has drawing problems with large models
-
- Open
-
-
QTBUG-77986 TableView wrong delegate positioning
-
- Closed
-