From 2ade01d676a109c5e38cd75b09e111662999fdcb Mon Sep 17 00:00:00 2001 From: Greg DiCristofaro Date: Mon, 28 Dec 2020 13:25:36 -0500 Subject: [PATCH] close data source summary on open geolocation --- .../autopsy/datasourcesummary/ui/GeolocationPanel.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Core/src/org/sleuthkit/autopsy/datasourcesummary/ui/GeolocationPanel.java b/Core/src/org/sleuthkit/autopsy/datasourcesummary/ui/GeolocationPanel.java index fc221cbca3..5bf4efceb4 100644 --- a/Core/src/org/sleuthkit/autopsy/datasourcesummary/ui/GeolocationPanel.java +++ b/Core/src/org/sleuthkit/autopsy/datasourcesummary/ui/GeolocationPanel.java @@ -223,6 +223,9 @@ public class GeolocationPanel extends BaseDataSourceSummaryPanel { * common table). */ private void openGeolocationWindow(DataSource dataSource, Integer daysLimit) { + // notify dialog (if in dialog) should close. + notifyParentClose(); + // set the filter TopComponent topComponent = WindowManager.getDefault().findTopComponent(GeolocationTopComponent.class.getSimpleName()); if (topComponent instanceof GeolocationTopComponent) {