Details
-
Bug
-
Resolution: Duplicate
-
P3: Somewhat important
-
None
-
5.7.0, 5.9.1
Description
On Windows 10 Anniversary Edition if I run qmlscene on this QML I get a message about a binding loop. On Linux there is no message. Both are using Qt 5.7. Control Panel on Windows says the version is 2.0.3
file:///C:/Qt/5.7/mingw53_32/qml/QtQuick/Controls/Private/BasicTableView.qml:613:17: QML Item: Binding loop detected for property "width"
import QtQuick 2.0 import QtQuick.Controls 1.3 Item { Row { Button { text: "one" } Button { text: "two" } } Row { Item { ListModel { id: contactModel ListElement { name: "Bill Smith" number: "555 3264" } ListElement { name: "John Brown" number: "555 8426" } ListElement { name: "Sam Wise" number: "555 0473" } } TableView { TableViewColumn { role: "name" title: "Title" } TableViewColumn { role: "number" title: "Author" } model: contactModel } } } }
Attachments
Issue Links
- duplicates
-
QTBUG-50605 [REG 5.5->5.6]: Showing a TableView will give a binding error on the width
- Closed