remove unseen background color assignment

This commit is contained in:
myk
2013-03-13 17:23:22 +00:00
parent 6e358bffb2
commit f268283660

View File

@@ -11,11 +11,9 @@ public class FCheckBox extends JCheckBox {
this("");
}
/** @param s0   {@link java.lang.String} */
public FCheckBox(final String s0) {
super(s0);
this.setForeground(FSkin.getColor(FSkin.Colors.CLR_TEXT));
this.setBackground(FSkin.getColor(FSkin.Colors.CLR_HOVER));
this.setFont(FSkin.getFont(14));
this.setOpaque(false);
}