ref #8631: same layout for unit id and nomenclatural code combobox
authorKatja Luther <k.luther@bgbm.org>
Tue, 12 Nov 2019 12:07:05 +0000 (13:07 +0100)
committerKatja Luther <k.luther@bgbm.org>
Tue, 12 Nov 2019 12:35:50 +0000 (13:35 +0100)
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/io/wizard/AbcdImportConfiguratorWizardPage.java

index d00fc792d26128fe814f8873997c09d6221646b6..4eb5a3fd51f772ab2db909748311885e361979b7 100644 (file)
@@ -152,6 +152,7 @@ public class AbcdImportConfiguratorWizardPage extends AbstractPreferenceWizard i
 //           classificationSelection.setLayoutData(gridData);
         Label unitIdLabel = new Label(unitIdComposite, SWT.NONE);
         unitIdLabel.setText(Messages.AbcdImportPreference_map_unit_nr_catalog_number);
+        unitIdLabel.setLayoutData(gridData);
         checkBoxMapUnitId = new Combo(unitIdComposite, SWT.BORDER| SWT.READ_ONLY);
         checkBoxMapUnitId.setLayoutData(gridData);
         checkBoxMapUnitId.add(ACCESSION_NUMBER);
@@ -287,6 +288,7 @@ public class AbcdImportConfiguratorWizardPage extends AbstractPreferenceWizard i
         codeComposite.setLayout(gridLayoutUnitId);
         Label labelCode = new Label(codeComposite, SWT.NONE);
         labelCode.setText("Nomenclatural Code");
+        labelCode.setLayoutData(gridData);
         nomenclaturalCodeSelectionCombo = new Combo(codeComposite, SWT.BORDER| SWT.READ_ONLY);
         nomenclaturalCodeSelectionCombo.setLayoutData(gridData);
         for(NomenclaturalCode code: NomenclaturalCode.values()){