aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/text/textedit_cyrillic_selected_all.qml
blob: 9580f28e29bef70ed63d8e4ef009a7fdaadfc714 (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.selectAll()
        font.pixelSize: 14
    }
}