Browse Source

REPORT-137896 fix:checkBoxList边框问题修复

fbp/release
Levy.Xie-解安森 1 month ago
parent
commit
bf7ca7421e
  1. 7
      designer-base/src/main/java/com/fr/design/gui/ilist/CheckBoxList.java

7
designer-base/src/main/java/com/fr/design/gui/ilist/CheckBoxList.java

@ -256,13 +256,6 @@ public class CheckBoxList extends JComponent {
this.setBackground(list.getBackground()); this.setBackground(list.getBackground());
this.setForeground(list.getForeground()); this.setForeground(list.getForeground());
} }
if (cellHasFocus) {
this.setBorder(UIManager.getBorder("List.focusCellHighlightBorder"));
} else {
this.setBorder(NO_FOCUS_BORDER);
}
return this; return this;
} }
} }

Loading…
Cancel
Save