diff --git a/plugins/org.jkiss.dbeaver.core/src/org/jkiss/dbeaver/ui/dialogs/driver/DriverDownloadAutoPage.java b/plugins/org.jkiss.dbeaver.core/src/org/jkiss/dbeaver/ui/dialogs/driver/DriverDownloadAutoPage.java index 00fbe0b4e987d6ee8c748ec634cc38b4cf21c2e4..b2c7ae7ad8e07a4873d5923f657eee50ba4aff47 100644 --- a/plugins/org.jkiss.dbeaver.core/src/org/jkiss/dbeaver/ui/dialogs/driver/DriverDownloadAutoPage.java +++ b/plugins/org.jkiss.dbeaver.core/src/org/jkiss/dbeaver/ui/dialogs/driver/DriverDownloadAutoPage.java @@ -76,14 +76,14 @@ class DriverDownloadAutoPage extends DriverDownloadPage { filesTable.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); UIUtils.createTableColumn(filesTable, SWT.LEFT, "File"); for (DriverFileDescriptor file : wizard.getFiles()) { - new TableItem(filesTable, SWT.NONE).setText(file.getPath()); + new TableItem(filesTable, SWT.NONE).setText(file.getDisplayName()); } UIUtils.packColumns(filesTable, true); } if (!wizard.isForceDownload()) { Label infoText = new Label(composite, SWT.NONE); - infoText.setText("\n\nOr you can obtain driver files by yourself and add them in driver editor."); + infoText.setText("\nOr you can obtain driver files by yourself and add them in driver editor."); infoText.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); } diff --git a/plugins/org.jkiss.dbeaver.core/src/org/jkiss/dbeaver/ui/dialogs/driver/DriverDownloadDialog.java b/plugins/org.jkiss.dbeaver.core/src/org/jkiss/dbeaver/ui/dialogs/driver/DriverDownloadDialog.java index 8610f0b0ffa439f85777cf342f7fdfd3f25e4f65..1305d5570f91d7a7c9d26fef3dba06f9f81f900d 100644 --- a/plugins/org.jkiss.dbeaver.core/src/org/jkiss/dbeaver/ui/dialogs/driver/DriverDownloadDialog.java +++ b/plugins/org.jkiss.dbeaver.core/src/org/jkiss/dbeaver/ui/dialogs/driver/DriverDownloadDialog.java @@ -116,6 +116,7 @@ public class DriverDownloadDialog extends WizardDialog public static boolean downloadDriverFiles(Shell shell, DriverDescriptor driver, List files, boolean forceDownload) { DriverDownloadDialog dialog = new DriverDownloadDialog(shell, driver, files, forceDownload); + dialog.setMinimumPageSize(100, 100); dialog.open(); return dialog.doDownload; }