Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
4.7.0
-
None
-
Windows XP
-
180e2ce2cca53f2c395e8dc9213d714c396c4555
Description
Running the snippet of QML below crashes qml.exe. Same thing happens for other numeric properties of Item.anchors.
import Qt 4.7 Rectangle { width: 200 height: 200 Text { Behavior on anchors.verticalCenterOffset { NumberAnimation { duration: 300; } } text: "Hello World" } }