Component resizing and JDesktopPane
I have problem with component initialization after its size changed. Suppose i created JInternalFrame and after that I make it visible with JDesktopPane.toFront(). In this case any component which is placed on procesed JInternalFrame recieve no ComponentEvent. Its interesting to me why EventQueue contains resize events before calling JDesktopPane.toFront(), but after the method returns EventQueue is empty. But registered eventlisteners are not notified about changes.
I posted similar question last week, but can't find it. Possibly it was removed. If there is something incorrect in my question, please explain me that. thank you.

