Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Schindl2012-05-11 10:25:03 +0000
committerTom Schindl2012-05-11 10:25:03 +0000
commit8de946e407a2062e3aa539e97239e557aa0b6aab (patch)
tree7a5d36cb0318a3efe73d7054df6c2ef72310e445
parentdc98d544ac896337f5a2954f5fb40c2ae2c0e940 (diff)
downloadorg.eclipse.e4.tools-8de946e407a2062e3aa539e97239e557aa0b6aab.tar.gz
org.eclipse.e4.tools-8de946e407a2062e3aa539e97239e557aa0b6aab.tar.xz
org.eclipse.e4.tools-8de946e407a2062e3aa539e97239e557aa0b6aab.zip
Bug 379215 - Allow typing in Element Id line for a Model Fragment
-rw-r--r--bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/StringModelFragment.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/StringModelFragment.java b/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/StringModelFragment.java
index 1852a4fa..a34e25ed 100644
--- a/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/StringModelFragment.java
+++ b/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/StringModelFragment.java
@@ -135,7 +135,7 @@ public class StringModelFragment extends AbstractComponentEditor {
Text t = new Text(comp, SWT.BORDER);
TextPasteHandler.createFor(t);
- t.setEditable(false);
+ // t.setEditable(false);
gd = new GridData(GridData.FILL_HORIZONTAL);
t.setLayoutData(gd);
context.bindValue(textProp.observeDelayed(200, t), EMFEditProperties.value(getEditingDomain(), FragmentPackageImpl.Literals.STRING_MODEL_FRAGMENT__PARENT_ELEMENT_ID).observeDetail(getMaster()));

Back to the top