Amend 9ad9d05f26 to fix wrong whitespaces

Task-number: QTBUG-117899
Pick-to: 6.6 6.5
Change-Id: I3726e0cdc743eb6c10a78d826b993cf71834663e
Reviewed-by: Santhosh Kumar <santhosh.kumar.selvaraj@qt.io>
(cherry picked from commit 7b9f69a69e)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Lars Schmertmann 2024-01-02 07:57:23 +01:00 committed by Qt Cherry-pick Bot
parent ddee70ac8c
commit 2ad42e1f27
1 changed files with 16 additions and 16 deletions

View File

@ -1292,25 +1292,25 @@ Item {
Component {
id: sizeHintBindingLoopComp
Item {
        id: root
        anchors.fill: parent
id: root
anchors.fill: parent
property var customWidth: 100
        RowLayout {
            id: col
RowLayout {
id: col
Item {
                id: item
                implicitHeight: 80
               implicitWidth: Math.max(col2.implicitWidth, root.customWidth + 20)
id: item
implicitHeight: 80
implicitWidth: Math.max(col2.implicitWidth, root.customWidth + 20)
ColumnLayout {
                    id: col2
                    width: parent.width
                 Item {
                        id: rect
                        implicitWidth: root.customWidth
                        implicitHeight: 80
                  }
                }
            }
id: col2
width: parent.width
Item {
id: rect
implicitWidth: root.customWidth
implicitHeight: 80
}
}
}
}
}
}