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

Item {
    width: 320
    height: 480
    TextInput {
        anchors.centerIn: parent
        id: textInput
        font.pixelSize: 44
        font.italic: true
        text: "777"

        Component.onCompleted: {
            textInput.select(1, 2)
        }
    }
}