Browse Source

REPORT-92161 反色问题,把选中变色的逻辑提出,和setIcon分开

release/11.0
obo 1 year ago
parent
commit
c65ac20bb1
  1. 14
      designer-base/src/main/java/com/fr/design/gui/controlpane/JListControlPane.java

14
designer-base/src/main/java/com/fr/design/gui/controlpane/JListControlPane.java

@ -377,15 +377,15 @@ public abstract class JListControlPane extends JControlPane implements ListContr
this.textLabel.setText(nameable.getName());
boolean iconSet = false;
for (NameableCreator creator : JListControlPane.this.creators()) {
if(isSelected) {
this.textLabel.setBackground(selectedBgColor);
this.textLabel.setForeground(Color.WHITE);
} else {
this.textLabel.setBackground(Color.WHITE);
this.textLabel.setForeground(Color.BLACK);
}
if (creator.menuIcon() != null && creator.acceptObject2Populate(nameable) != null) {
this.iconLabel.setIcon(creator.menuIcon());
if(isSelected) {
this.textLabel.setBackground(selectedBgColor);
this.textLabel.setForeground(Color.WHITE);
} else {
this.textLabel.setBackground(Color.WHITE);
this.textLabel.setForeground(Color.BLACK);
}
this.setToolTipText(creator.createTooltip());
iconSet = true;
break;

Loading…
Cancel
Save