I have no idea why this works, but I solved this problem by deriving
from Canvas3D and overriding getMinimumSize:
public class MyCanvas extends Canvas3D
{
public MyCanvas()
{
super(SimpleUniverse.getPreferredConfiguration());
}
// Override of Canvas3D method, to ensure correct behaviour in a JSplitPane
public Dimension getMinimumSize()
{
return new Dimension(0,0);
}
}
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA3D-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".