Dragging in the SingleCDockable

I have a question about SingleCDockable. Whenever we try to increase or decrease the size. The size of the inner frame does not change until we have released the mouse. Is there any way to change this functionality so that we change the size during the process.

Also if there is any listener for on which we can listen on this movements.

Thanks

You have to access the SplitDockStation and call setContinousDisplay.

area.getCenter().setContinousDisplay( true );```
It's usually disabled because resizing Swing-Components can have a heavy impact on performance.

I would add a java.awt.event.ComponentListener to the Component whose resize events you are interested in.