aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktextinput/data/qtbug51115.qml
blob: 008ac258448ab819d1d8f3a944464ff55bf2015e (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

TextInput {
    Component.onCompleted: {
        readOnly = false;
        text= "bla bla";
        selectAll();
        readOnly = true;
    }
}