Details
-
Bug
-
Resolution: Done
-
P2: Important
-
4.7.1
Description
Flickable is stealing the mouse from text selection so it's not possible to select the text by mouse.
To reproduce, launch below QML app and try to select the text by mouse.
import Qt 4.7 Flickable { width: 300 height: 500 contentWidth: childrenRect.width contentHeight: childrenRect.height TextEdit { width: 300 height:250 text: "this is a\nmultiline\ntext edit\nI bet you can't\nselect all of the text\n(by mouse)'" selectByMouse: true } }