Fixed background of geolocation filter checkboxes

This commit is contained in:
Kelly Kelly 2020-12-07 14:16:44 -05:00
parent bd5ded3731
commit 0275841efa

View File

@ -140,6 +140,7 @@ public final class CheckBoxJList<T extends CheckBoxJList.CheckboxListItem> exten
label.setText(value.getDisplayName());
label.setEnabled(list.isEnabled());
label.setOpaque(list.isOpaque());
label.setBackground(list.getBackground());
if (value.hasIcon()) {
label.setIcon(value.getIcon());
}