Hello, this should be a trivial one:
I have a component with a child-component. The child is a Button, so it implements paintButton. Sadly, it intercepts all mouse events, so the parenting component doesn’t “get it”. I want the parent to get the exact same mouse events the child does. I have tried passing the event explicitly, but it seems like some of them get lost (esp. the very first click, although after a short delay, holding the mousebutton is registered with the parent). Is there any easy way of propagating all mouseevents to immediate parents?
- Thanks in advance!
-A