summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetextinput/qtbug-15818.qml
blob: 59710a4cd38ad450dbcca6bc99200ebe8a32112f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 1.1
//Test that doubleclicking on the front of a word only selects that word, and not the word in front

Item{
    width: 200
    height: 100
    TextInput{
        anchors.fill: parent
        readOnly: true
        selectByMouse: true
        text: "abc a cba test"
    }
}