Details
-
Bug
-
Resolution: Done
-
P2: Important
-
4.7.1
-
None
Description
Running the code below, I would expect the cursor to stay in the bottom right
corner of the blue box and the text to grow left and up as I type.
import Qt 4.7 Rectangle { id: whiteRect width: 640; height: 480; Rectangle { anchors.centerIn: parent width: 400 height: 300; color: "blue" TextEdit { anchors.fill: parent font.pixelSize: 30 color: "white" horizontalAlignment: TextEdit.AlignRight verticalAlignment: TextEdit.AlignBottom wrapMode: TextEdit.WordWrap } } }