Details
-
Bug
-
Resolution: Fixed
-
P3: Somewhat important
-
6.4.2
-
-
706ebe7c4d654a4a341940c908c5d0cd8b817719
Description
In function QQuickDeliveryAgentPrivate::onGrabChanged(), the following call:
auto grabberItem = static_cast<QQuickItem *>(grabber);
can cause crash when one tries to have a global exclusive mouse grabber, i.e.., with setExclusivePointGrabber. The reason is that grabber can be a QObject here and static_cast<QQuickItem *> cannot process it correctly.