From d9ee6d629b9adf91d042b3632b1bbbcccb063f02 Mon Sep 17 00:00:00 2001 From: William Schaefer Date: Tue, 21 Feb 2017 11:32:07 -0500 Subject: [PATCH] 2307 removed mainWindow cursor change --- Core/src/org/sleuthkit/autopsy/ingest/ProfileSettingsPanel.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/ingest/ProfileSettingsPanel.java b/Core/src/org/sleuthkit/autopsy/ingest/ProfileSettingsPanel.java index e41e6f477c..4647038462 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/ProfileSettingsPanel.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/ProfileSettingsPanel.java @@ -334,7 +334,6 @@ class ProfileSettingsPanel extends IngestModuleGlobalSettingsPanel implements Op */ private void doProfileDialog(IngestProfile selectedProfile) { // Create a files set defintion panel. - WindowManager.getDefault().getMainWindow().setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); this.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); //start wait cursor for ingest job settings construction if (selectedProfile != null) { @@ -346,7 +345,6 @@ class ProfileSettingsPanel extends IngestModuleGlobalSettingsPanel implements Op } //end wait Cursor for ingest job settings construction setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR)); - WindowManager.getDefault().getMainWindow().setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR)); // Do a dialog box with the profilePanel till the user enters a name or chooses cancel int option = JOptionPane.OK_OPTION; do {