Box.createGlue() and events.
I have a JPanel containing some components and some glue. The JPanel has a MouseEvent listener registered to it. If I click on the portion of the JPanel containing the glue, the JPanel's listeners are NOT called even though the glue has no listeners itself. Calling setEnabled(false) on the glue does not help.
If I register a MouseEvent listener on the glue itself, it will intercept these mouse events, but I really want the JPanel's listener to be called.

