I'm writing an application that uses the Substance look and feel along with a JColorChooser. This works fine with Java 6, but on trying things out with Java 7 it really doesn't JColorChooser's:
java.lang.NullPointerException
at org.pushingpixels.substance.internal.ui.SubstanceListUI$SubstanceListSelectionListener$1.run(SubstanceListUI.java:135)
I'm guessing this is to do with the new JColorChooser that's being introduced in Java 7, and that Substance is tied to the current one in some way. However, aside from writing my own colour chooser, is there a nice way round this issue that anyone knows of? I suspect (hope) substance will be updated in due course to solve this issue, but I'd like to play around with some of the new features in the early builds of Java 7 before it's released.
I somehow suspect the answer to this is no, but if there is a quick fix / patch somewhere (I couldn't find one) it would be useful!