Issue #2314 - Additional non-blocking cleanup

Change-Id: Ibe1db684c2883fcef8b99e55c0906f9244600c9c

Former-commit-id: b66e49222f7ee12bd6216fc944370dff9a60769d
This commit is contained in:
Mike Duff 2013-09-05 07:47:15 -05:00
parent bd62cb1127
commit 00ba49547d
3 changed files with 3 additions and 2 deletions

View file

@ -993,6 +993,7 @@ public class DataBrowserDlg extends CaveSWTDialog implements IDataTableUpdate,
return;
}
}
loadSaveDlg = null;
}
});

View file

@ -202,7 +202,7 @@ public class LoadSaveConfigDlg extends CaveSWTDialog {
public LoadSaveConfigDlg(Shell parent, DialogType type,
String fileNamePath, String excludedNameForSaving,
boolean showPreview) {
super(parent, SWT.TITLE, CAVE.DO_NOT_BLOCK);
super(parent, SWT.TITLE | SWT.APPLICATION_MODAL, CAVE.DO_NOT_BLOCK);
if (type == DialogType.OPEN) {
setText("Load Configuration");

View file

@ -148,7 +148,7 @@ public class FindDlg extends CaveSWTDialog {
public FindDlg(Shell parent,
TableDataManager<NotificationRowData> filteredTableList,
int sIndex, int eIndex, int selected, ITableFind callback) {
super(parent, SWT.DIALOG_TRIM, CAVE.NONE);
super(parent, SWT.DIALOG_TRIM, CAVE.NONE | CAVE.DO_NOT_BLOCK);
this.setText("Find");
this.filteredTableList = filteredTableList;