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