I'm having a bit of trouble with Swing components.
In one JFrame, I have a GLCanvas and a JEditorPane separated by a JSplitPane. This configuration makes display response choppy in both panels.
However, when I place the GLCanvas and JEditorPane each in their own JFrame, display response is great.
I would assume this is because, in the second case, all operations on these components are performed in separate threads. If so, my questions are as follows:
Is it possible to run components in their own threads? Or is there a better way I should be doing this?
Thanks for any help you can provide.