ref #7998 Set voc text field to editable=false, allowing text select
authorPatrick Plitzner <p.plitzner@bgbm.org>
Thu, 7 Feb 2019 10:11:17 +0000 (11:11 +0100)
committerPatrick Plitzner <p.plitzner@bgbm.org>
Thu, 7 Feb 2019 10:11:17 +0000 (11:11 +0100)
eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/descriptiveDataSet/character/CharacterEditor.java

index df6fcc529ce25ae78156071c8a31f8ba11e03ee2..32cfd13ead7776e716628fc4e3a38c8f3fb5bc0c 100644 (file)
@@ -140,7 +140,7 @@ public class CharacterEditor implements IFeatureTreeEditor,IConversationEnabled,
         Label lblVocImport = new Label(vocChooserComposite, SWT.NONE);
         lblVocImport.setText("Character vocabulary");
         Text txtVocabulary = new Text(vocChooserComposite, SWT.NONE);
-        txtVocabulary.setEnabled(false);
+        txtVocabulary.setEditable(false);
         Button btnChooseVoc = new Button(vocChooserComposite, SWT.PUSH);
         btnChooseVoc.setImage(ImageResources.getImage(ImageResources.BROWSE_ICON));
         btnChooseVoc.addSelectionListener(new SelectionAdapter() {