Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian W. Damus2016-06-02 12:00:46 +0000
committerGerrit Code Review @ Eclipse.org2016-06-02 14:21:05 +0000
commitf092fb7b1b055089d6a082fb7eacfbce76ffdb7d (patch)
tree407e780849359edabcbb7f9e092323c382161736
parent782449b5a733df554a860c7f546a6beb5d99e5f5 (diff)
downloadorg.eclipse.papyrus-f092fb7b1b055089d6a082fb7eacfbce76ffdb7d.tar.gz
org.eclipse.papyrus-f092fb7b1b055089d6a082fb7eacfbce76ffdb7d.tar.xz
org.eclipse.papyrus-f092fb7b1b055089d6a082fb7eacfbce76ffdb7d.zip
Bug 495279: [State Machine] Highest-priority provider prevents edit-part customization
https://bugs.eclipse.org/bugs/show_bug.cgi?id=495279 Change the custom edit-part provider priority to Low. Change-Id: Ie6a23cea3abd964ce30d0ba28e1a03cd7ae2a0e3
-rw-r--r--plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.statemachine/plugin.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.statemachine/plugin.xml b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.statemachine/plugin.xml
index a4576830599..781f01a29ff 100644
--- a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.statemachine/plugin.xml
+++ b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.statemachine/plugin.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!--
- Copyright (c) 2009, 2015 MOSKitt, CEA, Christian W. Damus, and others.
+ Copyright (c) 2009, 2016 MOSKitt, CEA, Christian W. Damus, and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
@@ -11,7 +11,7 @@
Contributors:
MOSKitt - Initial API and implementation
Christian W. Damus (CEA) - bug 323802
- Christian W. Damus - bug 433206, 463513
+ Christian W. Damus - bug 433206, 463513, 495279
-->
<plugin>
@@ -265,7 +265,7 @@
<extension point="org.eclipse.gmf.runtime.diagram.ui.editpartProviders" id="ep-provider">
<editpartProvider class="org.eclipse.papyrus.uml.diagram.statemachine.custom.providers.CustomUMLEditPartProvider">
- <Priority name="Highest"/>
+ <Priority name="Low"/>
<object class="org.eclipse.gmf.runtime.notation.Diagram" id="generated-diagram">
<method name="getType()" value="PapyrusUMLStateMachineDiagram"/>
</object>

Back to the top