From 88e1694de1cc40ec5189ffe281268b9ca2506c0a Mon Sep 17 00:00:00 2001 From: Eugene Livis Date: Mon, 23 Sep 2019 17:41:38 -0400 Subject: [PATCH] Bug fix --- .../infrastructure/PortableCaseInterestingItemsListPanel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/report/infrastructure/PortableCaseInterestingItemsListPanel.java b/Core/src/org/sleuthkit/autopsy/report/infrastructure/PortableCaseInterestingItemsListPanel.java index 343fd8f0cc..55da66a73d 100644 --- a/Core/src/org/sleuthkit/autopsy/report/infrastructure/PortableCaseInterestingItemsListPanel.java +++ b/Core/src/org/sleuthkit/autopsy/report/infrastructure/PortableCaseInterestingItemsListPanel.java @@ -73,7 +73,7 @@ class PortableCaseInterestingItemsListPanel extends javax.swing.JPanel { customizeComponents(); // update tag selection - jAllSetsCheckBox.setSelected(settings.areAllTagsSelected()); + jAllSetsCheckBox.setSelected(settings.areAllSetsSelected()); setNamesListBox.setEnabled(!jAllSetsCheckBox.isSelected()); selectButton.setEnabled(!jAllSetsCheckBox.isSelected()); deselectButton.setEnabled(!jAllSetsCheckBox.isSelected());