From c5668891ab82ffba2026213eaee01e9f5749f426 Mon Sep 17 00:00:00 2001 From: Ethan Roseman Date: Fri, 27 Mar 2020 12:33:51 -0400 Subject: [PATCH] 6163 Proper checkbox background color --- Core/src/org/sleuthkit/autopsy/geolocation/CheckBoxJList.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/src/org/sleuthkit/autopsy/geolocation/CheckBoxJList.java b/Core/src/org/sleuthkit/autopsy/geolocation/CheckBoxJList.java index 3e405cb08b..225848a011 100755 --- a/Core/src/org/sleuthkit/autopsy/geolocation/CheckBoxJList.java +++ b/Core/src/org/sleuthkit/autopsy/geolocation/CheckBoxJList.java @@ -130,6 +130,7 @@ final class CheckBoxJList extends JLis setBackground(list.getBackground()); checkbox.setSelected(value.isChecked()); + checkbox.setBackground(list.getBackground()); label.setText(value.getDisplayName()); if (value.hasIcon()) { label.setIcon(value.getIcon());