aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/text/textedit_selected_ligature.qml
blob: 1380222e2580c6690f78b00f22df62fe2cf94e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 2.0

Item {
    width: 320
    height: 480

    TextEdit {
        anchors.centerIn: parent
        id: textEdit
        font.pixelSize: 16
        font.family: "Arial"
        text: "Are griffins birds or mammals?"

        Component.onCompleted: {
            textEdit.select(3, 8)
        }
    }
}