aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickbehaviors/data/disabledWriteWhileRunning.qml
blob: 1ec3a923d493afc9b66e7f52c44354bf58ff7b0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0
Rectangle {
    width: 400
    height: 400
    Rectangle {
        id: rect
        objectName: "MyRect"
        width: 100; height: 100; color: "green"
        Behavior on x {
            objectName: "MyBehavior"
            NumberAnimation { id: myAnimation; objectName: "MyAnimation"; duration: 1000; }
        }
    }
}