diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2010-07-21 00:52:08 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2010-07-21 00:58:36 (GMT) |
commit | 64833c0a648211f3fe7547436f022edc0ceb51ac (patch) | |
tree | 9c1fa421a03a5954a2bbfe2f34936e0991bc1026 /tests/auto/declarative/qdeclarativebehaviors/data | |
parent | 6d8b3453b6b4b151c777ad541ab25ca6bacc7381 (diff) | |
download | Qt-64833c0a648211f3fe7547436f022edc0ceb51ac.zip Qt-64833c0a648211f3fe7547436f022edc0ceb51ac.tar.gz Qt-64833c0a648211f3fe7547436f022edc0ceb51ac.tar.bz2 |
Only ignore the same target value for a Behavior when it is running.
Otherwise a Behavior may mistakenly not be triggered. This situation
can arise when the property in question has been manipulated via the
property system, followed by a direct function call (which correctly
bypasses the Behavior), followed by a another change via the property
system.
Task-number: QTBUG-12295
Diffstat (limited to 'tests/auto/declarative/qdeclarativebehaviors/data')
-rw-r--r-- | tests/auto/declarative/qdeclarativebehaviors/data/qtbug12295.qml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/qtbug12295.qml b/tests/auto/declarative/qdeclarativebehaviors/data/qtbug12295.qml new file mode 100644 index 0000000..804559c --- /dev/null +++ b/tests/auto/declarative/qdeclarativebehaviors/data/qtbug12295.qml @@ -0,0 +1,17 @@ +import Qt 4.7 + +Rectangle { + width: 200 + height: 200 + color: "blue" + + Rectangle { + id: myRect + objectName: "myRect" + width: 100 + height: 100 + Behavior on x { + NumberAnimation {} + } + } +} |