Skip to content

Commit

Permalink
0004943: Fixed issues with dialogs
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-miller-jumpmind committed Aug 17, 2021
1 parent 556d08b commit 31667a4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Expand Up @@ -132,6 +132,8 @@ public DbExportDialog(IDatabasePlatform databasePlatform, Set<Table> selectedTab

this.databasePlatform = databasePlatform;
this.queryPanel = queryPanel;

setCloseOnOutsideClick(false);

tableSelectionLayout = new TableSelectionLayout(databasePlatform, selectedTableSet, excludeTablesRegex) {
private static final long serialVersionUID = 1L;
Expand Down
Expand Up @@ -117,6 +117,8 @@ public DbImportDialog(IDatabasePlatform databasePlatform, Set<Table> selectedTab

this.selectedTablesSet = selectedTableSet;
this.databasePlatform = databasePlatform;

setCloseOnOutsideClick(false);

createImportLayout();
}
Expand Down
Expand Up @@ -79,6 +79,7 @@ public SettingsDialog(SqlExplorer explorer) {
super("Settings");
this.explorer = explorer;
this.settingsProvider = explorer.getSettingsProvider();
setCloseOnOutsideClick(false);
setWidth("800px");
content.setHeight("91%");
add(createSettingsLayout(), 1);
Expand Down

0 comments on commit 31667a4

Please sign in to comment.