--- jsampler/trunk/src/org/jsampler/view/fantasia/RightSidePane.java 2008/05/28 04:00:48 1742 +++ jsampler/trunk/src/org/jsampler/view/fantasia/RightSidePane.java 2008/05/31 23:04:01 1743 @@ -35,6 +35,8 @@ import javax.swing.event.ChangeEvent; import javax.swing.event.ChangeListener; +import org.jvnet.substance.SubstanceLookAndFeel; + import static org.jsampler.view.fantasia.FantasiaI18n.i18n; import static org.jsampler.view.fantasia.FantasiaPrefs.preferences; @@ -71,6 +73,9 @@ final String s = "rightSidePane.showInstrumentsDb"; setTabbedView(preferences().getBoolProperty(s)); + tabbedPane.setBackground(new java.awt.Color(0x828282)); + tabbedPane.putClientProperty(SubstanceLookAndFeel.COLORIZATION_FACTOR, 1.0); + preferences().addPropertyChangeListener(s, getHandler()); }