提交 1bbb4992 编写于 作者: J jurgen

Maven artifact update

Former-commit-id: f639a3b7
上级 b7e58e26
......@@ -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));
}
......
......@@ -116,6 +116,7 @@ public class DriverDownloadDialog extends WizardDialog
public static boolean downloadDriverFiles(Shell shell, DriverDescriptor driver, List<DriverFileDescriptor> files, boolean forceDownload) {
DriverDownloadDialog dialog = new DriverDownloadDialog(shell, driver, files, forceDownload);
dialog.setMinimumPageSize(100, 100);
dialog.open();
return dialog.doDownload;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册