aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/anchorsToParentInPropertyChagnes.qml
blob: 8b1682da925e8d4c3a5541594a1e75646150d847 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.9

Item {
    width: 200
    property int edgeWidth: edge.edgeWidth
    EdgeObject {
        id: edge
        anchors.fill: parent
    }
}