aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/EdgeObject.qml
blob: b25dc29c493891ca46b7198bb70a9e4939a9a4f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 2.0

Item {
    property int edgeWidth: bg.width

    Rectangle {
        id: bg
    }

    states: [
        State {
            when: 1 === 1
            PropertyChanges {
                target: bg
                anchors.left: parent.left
                anchors.right: parent.right
            }
        }
    ]
}