Amend 9ad9d05f26 to fix wrong whitespaces

Task-number: QTBUG-117899
Pick-to: 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>
(cherry picked from commit 2ad42e1f27)
This commit is contained in:
Lars Schmertmann 2024-01-02 07:57:23 +01:00 committed by Qt Cherry-pick Bot
parent 147ecd467d
commit a631caf282
1 changed files with 16 additions and 16 deletions

View File

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