blob: f68a8901aba5c43123ed26b4ccaf78c8074b8fb1 [file] [log] [blame] [edit]
import QtQuick 2.0
Rectangle {
width: 200
height: 200
FocusScope {
id: focusScope
anchors.fill: parent
TextInput {
anchors.centerIn: parent
text: "Some text"
onActiveFocusChanged: if (!activeFocus) focusScope.focus = false
Component.onCompleted: forceActiveFocus()
}
}
}