2307 removed mainWindow cursor change

This commit is contained in:
William Schaefer 2017-02-21 11:32:07 -05:00
parent 8214b8bf3f
commit d9ee6d629b

View File

@ -334,7 +334,6 @@ class ProfileSettingsPanel extends IngestModuleGlobalSettingsPanel implements Op
*/ */
private void doProfileDialog(IngestProfile selectedProfile) { private void doProfileDialog(IngestProfile selectedProfile) {
// Create a files set defintion panel. // Create a files set defintion panel.
WindowManager.getDefault().getMainWindow().setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
this.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); this.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
//start wait cursor for ingest job settings construction //start wait cursor for ingest job settings construction
if (selectedProfile != null) { if (selectedProfile != null) {
@ -346,7 +345,6 @@ class ProfileSettingsPanel extends IngestModuleGlobalSettingsPanel implements Op
} }
//end wait Cursor for ingest job settings construction //end wait Cursor for ingest job settings construction
setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR)); 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 // Do a dialog box with the profilePanel till the user enters a name or chooses cancel
int option = JOptionPane.OK_OPTION; int option = JOptionPane.OK_OPTION;
do { do {