blob: 9580f28e29bef70ed63d8e4ef009a7fdaadfc714 [file] [log] [blame]
import QtQuick 2.0
Item {
width: 320
height: 480
TextEdit {
id: textEdit
text: "и в у"
anchors.centerIn: parent
Component.onCompleted: textEdit.selectAll()
font.pixelSize: 14
}
}