From 0f21a8225604a60244bc7c602b0a7fc52176ac98 Mon Sep 17 00:00:00 2001 From: Kelly Kelly Date: Thu, 13 Jun 2019 15:46:12 -0400 Subject: [PATCH] Added resetComponent call to setSelectionInfo --- .../autopsy/communications/relationships/MediaViewer.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/communications/relationships/MediaViewer.java b/Core/src/org/sleuthkit/autopsy/communications/relationships/MediaViewer.java index cbb71263e2..03412a0263 100755 --- a/Core/src/org/sleuthkit/autopsy/communications/relationships/MediaViewer.java +++ b/Core/src/org/sleuthkit/autopsy/communications/relationships/MediaViewer.java @@ -130,9 +130,7 @@ final class MediaViewer extends JPanel implements RelationshipsViewer, ExplorerM logger.log(Level.WARNING, "Unable to update selection." , ex); } - if(artifactList.size() == 0) { - thumbnailViewer.resetComponent(); - } + thumbnailViewer.resetComponent(); thumbnailViewer.setNode(new TableFilterNode(new DataResultFilterNode(new AbstractNode(new AttachmentsChildren(artifactList)), tableEM), true, this.getClass().getName())); }