Details
-
Bug
-
Resolution: Fixed
-
P1: Critical
-
6.0.4, 6.1.1, 6.1.3, 6.2.1, 6.2.2
-
-
a9d571e847c6202991d8b26bd5663279a400418e b2cfc8f114f248cd58a409e67da8bdb5d5e48981 (qt/qtdeclarative/6.2)
Description
A DragHandler used inside of a Dialog does not work
import QtQuick import QtQuick.Window import QtQuick.Controls Window { id: window width: 640 height: 480 visible: true Dialog{ id: dialog width: 500; height: 500 Rectangle{ width: 400; height: 400; Rectangle{ id: rect color: "red" width: 20; height: 20; } DragHandler{ target: rect } } } Button{ text: "open Dialog" onClicked: dialog.open() } }
Attachments
Issue Links
- duplicates
-
QTBUG-97461 [REG 5.15.2->6.2] DragHandler does not work when there's a Drawer in the application
- Closed