Hey there,

I have a custom layout of stacked widgets.
I have 2 widgets on top of each other inside this.

Here is the current scenario :

- The top widget gets a mouse event.
- The top widget does not accept that event.
- The event is propagated to the parent.

Here is what I want :

- The top widget gets a mouse event.
- The top widget does not accept that event.
- The event is propagated to the widget under it and not its parent.

How can I do that ?