From 0454723d36e720a41ed1029a2de35f64d30e25f7 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Fri, 10 Jun 2016 09:46:41 -0400 Subject: [PATCH] Move setting the main window title on case change to the EDT --- Core/src/org/sleuthkit/autopsy/casemodule/Case.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/Case.java b/Core/src/org/sleuthkit/autopsy/casemodule/Case.java index 016c842155..b83346764e 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/Case.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/Case.java @@ -1533,8 +1533,8 @@ public class Case implements SleuthkitCase.ErrorObserver { // close all top components CoreComponentControl.closeCoreWindows(); } + updateMainWindowTitle(currentCase.getName()); }); - updateMainWindowTitle(currentCase.getName()); } else { SwingUtilities.invokeLater(() -> { Frame f = WindowManager.getDefault().getMainWindow();