aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/text/textedit_cyrillic_selected.qml
blob: 849e4b859722d3733f26f53d28f33ea6cba4465f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

Item {
    width: 320
    height: 480
    TextEdit {
        id: textEdit
        text: "и в у"
        anchors.centerIn: parent
        Component.onCompleted: textEdit.select(2, 3)
        font.pixelSize: 14
    }
}