Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
4.7.0
-
None
Description
When double or triple-clicking in TextInput, a selection is normally created. Double-clicking or tapping should select on a word boundary, while three click/taps should select a line / paragraph.
TextEdit works as expected.
import Qt 4.6 Rectangle { Column { anchors.fill: parent TextInput { id: input width: parent.width Rectangle { color:"red" z: -1 anchors.fill: parent } } TextEdit { width: parent.width anchors.top: input.bottom anchors.bottom: parent.bottom color: "white" Rectangle { color:"blue" z: -1 anchors.fill: parent } } } }
Attachments
Issue Links
- resulted in
-
QTBUG-9942 It's possible to have selection in multiple elements
- Closed