* commit '150a3fcbf45f5bf105d1826c334b8e75b5b28bcc': update 透明度
@ -2,3 +2,4 @@ designer/bin
designer_base/bin
designer_chart/bin
designer_form/bin
*.iml
@ -46,6 +46,11 @@ public class ColorSelectPane extends TransparentPane implements ColorSelectable
super(true);
initialCompents(true);
}
public ColorSelectPane(boolean isSupportTransparent) {
super(isSupportTransparent);
initialCompents(isSupportTransparent);
private void initialCompents(boolean isSupportTransparent) {
@ -20,6 +20,11 @@ public class UIColorPickerPane4Map extends UIColorPickerPane {
private class ColorSelectPane4Map extends ColorSelectPane {
public ColorSelectPane4Map(){
super(false);
public void initCenterPaneChildren(JPanel centerPane) {
JPanel menuColorPane1 = new JPanel();
centerPane.add(menuColorPane1);