blob: e3179cfc8e899ef88c01ce879007aa611aca35d4 [file] [log] [blame]
import QtQuick 2.0
TextEdit {
Component.onCompleted: {
readOnly = false;
text= "bla bla";
selectAll();
readOnly = true;
}
}