Project

General

Profile

« Previous | Next » 

Revision c394ead7

Added by Katja Luther almost 7 years ago

remove zip file check box on file selection dialog

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/io/wizard/ExportToFileDestinationWizardPage.java
350 350
				}
351 351
			}
352 352
		});
353
		if (outputModelExport){
354
			 Label zipLabel = new Label(composite, SWT.NONE);
355
		        zipLabel.setText("Create zip-File");
356
		   Button zip = new Button(composite, SWT.CHECK);
357
		   zip.addSelectionListener(new SelectionAdapter() {
358
				/*
359
				 * (non-Javadoc)
360
				 *
361
				 * @see
362
				 * org.eclipse.swt.events.SelectionAdapter#widgetSelected(org.eclipse
363
				 * .swt.events.SelectionEvent)
364
				 */
365
				@Override
366
				public void widgetSelected(SelectionEvent e) {
367
					super.widgetSelected(e);
368
					((CdmLightExportConfigurator)configurator).setCreateZipFile(zip.getSelection());
369
				}
370
			});
371
		}else {
353
		if (!outputModelExport){
354
			
372 355
			 Label fileLabel = new Label(composite, SWT.NONE);
373 356
		        fileLabel.setText("File");
374 357
	    		text_exportFileName = new Text(composite, SWT.BORDER);

Also available in: Unified diff