Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.7.1
-
None
Description
Start running the code below fresh in qmlviewer, then press Ctrl+R to reload the code and
note how the text is drawn a few pixels wider than it was initially.
import Qt 4.7 Rectangle { width: 640; height: 480; Rectangle { x: 200; y: 200 width: 300; height: 100 color: "blue" Text { text: "This side up"; anchors.centerIn: parent; color: "white" } } }