Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
6.2.3
-
None
-
0c7b0a4306 (qt/qtdeclarative/dev) d4c31ec0cd (qt/qtdeclarative/6.2) 66d6c7ec01 (qt/qtdeclarative/6.3) d4c31ec0cd (qt/tqtc-qtdeclarative/6.2)
Description
ItemDelegate is blocking the hovered property of a ScrollView.
import QtQuick import QtQuick.Controls Window { width: 640 height: 480 visible: true title: qsTr("Hello World") ScrollView { id: scrollView width: 200 height: 200 clip: true background: Rectangle { anchors.fill: parent color: "yellow" } onHoveredChanged: console.log("hovered", scrollView.hovered) ListView { model: 20 delegate: ItemDelegate { text: "Item " + index background: Rectangle { anchors.fill: parent color: "red" } } } } }