From 1bbb499201d8ecbb6e4c6451df0940020305b207 Mon Sep 17 00:00:00 2001 From: jurgen Date: Mon, 14 Sep 2015 22:19:38 +0000 Subject: [PATCH] Maven artifact update Former-commit-id: f639a3b7ba4cb50c56406af71868440f13db2370 --- .../dbeaver/ui/dialogs/driver/DriverDownloadAutoPage.java | 4 ++-- .../jkiss/dbeaver/ui/dialogs/driver/DriverDownloadDialog.java | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) 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 00fbe0b4e9..b2c7ae7ad8 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 8610f0b0ff..1305d5570f 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; } -- GitLab