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

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