I have a component inside a JScrollPane, and I would like to handle some scroll events. However, I don’t want to handle all of them. Unfortunately, when I add a MouseWheelListener to my child component, the scroll stops receiving the scrolling events.
How can I “pass on” events that I don’t want to handle manually?
What about?
Basically you would need to call:
Now you might need to dig out the scrollPane, but you can play around with the idea