Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
5.15.16
-
None
Description
Hi
I use QML MouseArea and in this test case, I would like to ensure that pressing one mouse button during a drag of the other mouse button behaves as exepected, i.e. :
"
mousePress(item, x, y, Qt.LeftButton)
// check stuff
mousePress(item, x, y, Qt.RightButton)
// check stuff
mouseRelease(item, x, y, Qt.RightButton)
// check stuff
mouseRelease(item, x, y, Qt.LeftButton)
// check stuff
"
But the second mousePress don't trigger any expected event.
Here is a minimal code example to reproduce the problem.
This problem may be already reported but I didn't find it...
Thanks in advance for you investigation !
Maxihm