From afbfeefff54ac7b6703ea7076eb2d3d2ed83e217 Mon Sep 17 00:00:00 2001 From: Kelly Kelly Date: Fri, 20 Sep 2019 11:42:43 -0400 Subject: [PATCH] Fixed bug --- .../sleuthkit/autopsy/communications/FiltersPanel.java | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/communications/FiltersPanel.java b/Core/src/org/sleuthkit/autopsy/communications/FiltersPanel.java index a804735c32..37f197f5fe 100644 --- a/Core/src/org/sleuthkit/autopsy/communications/FiltersPanel.java +++ b/Core/src/org/sleuthkit/autopsy/communications/FiltersPanel.java @@ -257,9 +257,14 @@ final public class FiltersPanel extends JPanel { //clear the device filter widget when the case changes. devicesMap.clear(); devicesListPane.removeAll(); - - accountTypeMap.clear(); + + accountTypeMap.clear(); accountTypeListPane.removeAll(); + + CheckBoxIconPanel panel = createAccoutTypeCheckBoxPanel(Account.Type.DEVICE, true); + accountTypeMap.put(Account.Type.DEVICE, panel.getCheckBox()); + accountTypeListPane.add(panel); + }); }