aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktextinput/data/qtbug77841.qml
blob: ebb43a8f82ecfc2e478afe4a678b916b26507c47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import QtQuick 2.12

Item {
    id: root
    width: 600
    height: 300

    TextInput {
        id: qwe
        objectName: "qwe"
        width: 500
        height: 100
        font.pixelSize: 50
        text: "123456"
        focus: true
    }

    Component.onCompleted: {
        qwe.insert(0, "***")
        qwe.remove(0, 3)
    }
}