-
Bug
-
Resolution: Cannot Reproduce
-
P1: Critical
-
4.7.0
-
None
The QML text element doesn't play nice with transformations (e.g. rotations) under OSX 10.6. I think this is a bug in the text engine and not in QML, btw the following code can be used to reproduce the issue (just click on the button and Text element will disappear).
import Qt 4.7 Rectangle { id: thisApp width: 400 height: 400 Item { id: content anchors.fill: parent Rectangle { border.width: 1 border.color: "black" x: 100 y: 100 width: message.width + 20 height: message.height + 20 Text { id: message text: "click me!" anchors.centerIn: parent } MouseArea { anchors.fill: parent onClicked: content.rotation = 90 } } } }