Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-57686

Binding loop message

    XMLWordPrintable

Details

    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

          No reviews matched the request. Check your Options in the drop-down menu of this sections header.

          Activity

            People

              Unassigned Unassigned
              code Cody Scott
              Votes:
              3 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Gerrit Reviews

                  There are no open Gerrit changes