Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
6.0.3, 6.1.0
-
Windows 10 x64
Microsoft Visual Studio 2019 (version 16.9.0)
Qt 6.0.3 and Qt 6.1.0
-
-
0c2adb5652480f7546fadb78b652a09294c4e646 (qt/qtquickcontrols2/dev) 532b3c3ab86b7ffea5da71a9048b95ab43862e05 (qt/qtquickcontrols2/6.2) c662301da36300b5f9f101e88e2cdccc06714983 (qt/qtquickcontrols2/6.1)
Description
QML source:
import QtQuick 2.15 import QtQuick.Window 2.15 import QtQuick.Controls 2.15 Window { width: 640 height: 480 visible: true title: qsTr("Hello World") ListView { anchors.fill: parent model: 100 delegate: Button { text: model.index } } }
If you run this application and try to scroll its window content it fails.
The full project code is in ButtonsInList-1.zip.