Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonas Helming2016-01-04 15:31:30 +0000
committerJonas Helming2016-01-04 15:31:30 +0000
commitb00cf89c5c69e4833b0e2d441d2dca3e1b044239 (patch)
tree86f04a6d897a869785f0e918f0f95ffb04aa1dd3
parent8168addf5096355d90c063b324d3e1f9a4115e3f (diff)
downloadeclipse.platform.ui.tools-b00cf89c5c69e4833b0e2d441d2dca3e1b044239.tar.gz
eclipse.platform.ui.tools-b00cf89c5c69e4833b0e2d441d2dca3e1b044239.tar.xz
eclipse.platform.ui.tools-b00cf89c5c69e4833b0e2d441d2dca3e1b044239.zip
Bug 482997 - Context Properties are not editable for Application in
Eclipse 4 Model Editor Change-Id: I0b4e25d1822d19a7b7f22d7ba2bcd6f915ae0482 Signed-off-by: Jonas Helming <jhelming@eclipsesource.com>
-rw-r--r--bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/ApplicationEditor.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/ApplicationEditor.java b/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/ApplicationEditor.java
index 00b54c63..a941043e 100644
--- a/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/ApplicationEditor.java
+++ b/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/ApplicationEditor.java
@@ -196,7 +196,8 @@ public class ApplicationEditor extends AbstractComponentEditor {
.value(getEditingDomain(), ApplicationPackageImpl.Literals.APPLICATION_ELEMENT__ELEMENT_ID));
ControlFactory.createBindingContextWiget(parent, Messages, this, Messages.ApplicationEditor_BindingContexts);
-
+ ControlFactory.createMapProperties(parent, Messages, this, Messages.ModelTooling_Context_Properties,
+ UiPackageImpl.Literals.CONTEXT__PROPERTIES, VERTICAL_LIST_WIDGET_INDENT);
ControlFactory.createCheckBox(parent, Messages.ModelTooling_UIElement_ToBeRendered, getMaster(), context,
WidgetProperties.selection(),
EMFEditProperties.value(getEditingDomain(), UiPackageImpl.Literals.UI_ELEMENT__TO_BE_RENDERED));

Back to the top