qt6-bb10/qtdeclarative/tests/auto/quick/qquickitem/data/focusSubItemInNonFocusScope...

24 lines
455 B
QML

import QtQuick 2.0
Rectangle {
width: 400; height: 400
FocusScope {
width: 400; height: 400
focus: true
Item {
width: 400; height: 400
Item {
id: dummy
objectName: "dummyItem"
focus: true
}
TextInput {
id: ti
objectName: "textInput"
focus: true
}
}
}
}