-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.9.0, 6.10
-
None
Consider the following code
import QtQuick import QtQuick.Layouts import QtQuick.Controls ApplicationWindow { width: 500 height: 500 ColumnLayout { anchors.fill: parent Button { text: "Hello" } ListView { model: 4 Layout.fillWidth: true Layout.fillHeight: true delegate: ItemDelegate { text: "Foo" width: ListView.view.width } } Button { text: "Hello again" } } }
When pressing Tab the focus jumps between the two buttons, completely skipping the ListView. This makes it impossible to keyboard-navigate the list content.
This can be worked around by manually adding activeFocusOnTab: true to the ListView. That should be the default and not needed to be specified on every ListView