Issue #2314 - Additional non-blocking cleanup
Change-Id: Ibe1db684c2883fcef8b99e55c0906f9244600c9c Former-commit-id:e8a6a0ea14
[formerly00ba49547d
] [formerly72d53a9b6f
[formerly b66e49222f7ee12bd6216fc944370dff9a60769d]] Former-commit-id:72d53a9b6f
Former-commit-id:916401fb04
This commit is contained in:
parent
0308d5da0b
commit
bc4f672b37
3 changed files with 3 additions and 2 deletions
|
@ -993,6 +993,7 @@ public class DataBrowserDlg extends CaveSWTDialog implements IDataTableUpdate,
|
|||
return;
|
||||
}
|
||||
}
|
||||
loadSaveDlg = null;
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue