Details
-
Bug
-
Resolution: Unresolved
-
P1: Critical
-
None
-
6.8.3, 6.9.0
-
None
Description
Consider the following:
import QtQuick import QtQuick.Controls Window { width: 640 height: 480 visible: true title: qsTr("Hello World") Button { id: button width: 200 height: 200 text: hovered ? "Hovered: Yes" : "Hovered: No" } Item { id: hoverArea anchors.fill: button z: 99 HoverHandler { blocking: false // by default it is also false grabPermissions: PointerHandler.ApprovesTakeOverByAnything // this does not seem to change anything } } }
Even though the hover handler is not supposed to block, when I hover the control (button) it does not set `hovered` state anymore.
This was working fine with Qt 6.2 (`blocking` property was not available). I do not know since when this became an issue.