Details
-
Bug
-
Resolution: Invalid
-
Not Evaluated
-
None
-
4.7.1
-
None
Description
Running the code below and entering more lines of text than fit in the box, I would
expect the TextEditor to position the text so that the cursor is always visible.
import Qt 4.7 Rectangle { width: 640; height: 480; Rectangle { anchors.centerIn: parent width: 400 height: 300; color: "blue" TextEdit { anchors.fill: parent font.pixelSize: 30 color: "white" wrapMode: TextEdit.WordWrap } } }