Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
4.7.1
-
None
Description
Run the code below. Note how double-clicking on a word at the end of the
line to select it does not work, while doing the same at the beginning does.
import Qt 4.7 Rectangle { width: 640; height: 480; Rectangle { anchors.centerIn: parent width: 400; height: 25; color: "blue" TextInput { anchors.fill: parent color: "white" focus: true selectByMouse: true text: "Sea Shepherd campaigner Peter Bethune faces 15 years in jail after boarding whaling ship" } } }