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

[REG 6.7 → 6.8] Regression with Qml Binding type (destruction) in 6.8

    XMLWordPrintable

Details

    Description

      The following reproducer works with Qt 6.7.3 but is broken with >= Qt 6.8.

      The code should toggle between displaying "foo" and "bar".

      The reason is likely e2fa7ab91310ea74c30e9458dfbe20d257578659 (QTBUG-106103)

      Why would one use this construct? In my case I use the Repeater as a singleton object factory. An item outside is supposed to display some data of that object.

      pragma ComponentBehavior: Bound
      
      import QtQuick
      import QtQuick.Controls
      
      Window {
        width: 640
        height: 480
        visible: true
        title: qsTr("Hello World")
      
        Text {
          id: text
        }
      
        Button {
          y: 30
          text: "Foo"
          onClicked: repeater.model = ["foo"]
        }
      
        Button {
          y: 60
          text: "Bar"
          onClicked: repeater.model = ["bar"]
        }
      
        Repeater {
          id: repeater
      
          delegate: Item {
            id: delegate
      
            required property string modelData
      
            Binding {
              target: text
              property: "text"
              value: delegate.modelData
      
              // Fix A:
              // delayed: true
      
              // Fix B: (deprecated, says documentation)
              // restoreMode: Binding.RestoreNone
            }
          }
        }
      }
      

      Attachments

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

        Activity

          People

            qtqmlteam Qt Qml Team User
            njeisecke_qtc Nils Jeisecke
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:

              Gerrit Reviews

                There are no open Gerrit changes