Hi,
If in onPressed() handler I set accepted to false this cause Canceled signal to be generated ! If we would follow documentation this must just propagate mouse event to another MouseArea
It will not as propagateComposedEvents [doc.qt.io] only works for composed events and pressed is not a composed event.
From the Doc:
MouseArea contains several composed events: clicked, doubleClicked and pressAndHold. These are composed of basic mouse events, like pressed, and can be propagated differently in comparison to basic events.
↧