Details
-
Bug
-
Resolution: Done
-
P2: Important
-
6.1.3, 6.2.0
-
-
a9d571e847c6202991d8b26bd5663279a400418e (qt/qtdeclarative/dev) b2cfc8f114f248cd58a409e67da8bdb5d5e48981 (qt/qtdeclarative/6.2)
Description
DragHandler does not get events when there is a Drawer somewhere in a QML application.
The Drawer affects the DragHandler independently if the Drawer is opened or not.
Here is a sample code to reproduce the problem:
import QtQuick import QtQuick.Controls import QtQuick.Window ApplicationWindow { width: 600 height: 400 visible: true title: "Drag Handler Test" // if you remove the Drawer, the DragHandler starts to print the logs Drawer { width: 30 height: 30 } DragHandler { target: null onActiveChanged: { console.log("onActiveChanged = ", active); } } }
Attachments
Issue Links
- is duplicated by
-
QTBUG-98844 [REG 6.1.0->6.1.1] DragHandler inside Dialog does not work
- Closed