diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/LocalFilesPanel.java b/Core/src/org/sleuthkit/autopsy/casemodule/LocalFilesPanel.java index b1554eb080..ecfafd7844 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/LocalFilesPanel.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/LocalFilesPanel.java @@ -191,6 +191,9 @@ final class LocalFilesPanel extends javax.swing.JPanel { StringBuilder allPaths = new StringBuilder(); for (File f : files) { currentFiles.add(f); + } + for (File f : currentFiles) { + //loop over set of all files to ensure list is accurate //update label allPaths.append(f.getAbsolutePath()).append("\n"); } diff --git a/Core/test/filter_test1.img b/Core/test/filter_test1.img new file mode 100644 index 0000000000..69b6e21b6c Binary files /dev/null and b/Core/test/filter_test1.img differ