Issue #2314 - Additional non-blocking cleanup

Change-Id: Ibe1db684c2883fcef8b99e55c0906f9244600c9c

Former-commit-id: e8a6a0ea14 [formerly 00ba49547d] [formerly e8a6a0ea14 [formerly 00ba49547d] [formerly 72d53a9b6f [formerly b66e49222f7ee12bd6216fc944370dff9a60769d]]]
Former-commit-id: 72d53a9b6f
Former-commit-id: bc4f672b37 [formerly 916401fb04]
Former-commit-id: 06b9353720
This commit is contained in:
Mike Duff 2013-09-05 07:47:15 -05:00
parent 2208832fa1
commit 8c9877a7fa
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;