Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcletavernie2013-03-07 17:31:50 +0000
committercletavernie2013-03-07 17:31:50 +0000
commit4711ff35a48ad03f48642ea576d4c0cc5c66881e (patch)
tree94e4a177356cf03d23f66aef254ffe72eea97d78 /plugins/views/modelexplorer
parent38dc27cb18f515fb68775129b88fe5386219e3d7 (diff)
downloadorg.eclipse.papyrus-4711ff35a48ad03f48642ea576d4c0cc5c66881e.tar.gz
org.eclipse.papyrus-4711ff35a48ad03f48642ea576d4c0cc5c66881e.tar.xz
org.eclipse.papyrus-4711ff35a48ad03f48642ea576d4c0cc5c66881e.zip
398712: [Core] Multiple issues with the PageManager
https://bugs.eclipse.org/bugs/show_bug.cgi?id=398712 290952: [CDO] Support for CDO model repository https://bugs.eclipse.org/bugs/show_bug.cgi?id=290952 Fix various regressions related to these tasks, and update the tests
Diffstat (limited to 'plugins/views/modelexplorer')
-rw-r--r--plugins/views/modelexplorer/org.eclipse.papyrus.views.modelexplorer/plugin.xml18
1 files changed, 13 insertions, 5 deletions
diff --git a/plugins/views/modelexplorer/org.eclipse.papyrus.views.modelexplorer/plugin.xml b/plugins/views/modelexplorer/org.eclipse.papyrus.views.modelexplorer/plugin.xml
index ce61ff7440b..943b3a28646 100644
--- a/plugins/views/modelexplorer/org.eclipse.papyrus.views.modelexplorer/plugin.xml
+++ b/plugins/views/modelexplorer/org.eclipse.papyrus.views.modelexplorer/plugin.xml
@@ -250,11 +250,19 @@
<activeWhen>
<with
variable="selection">
- <test
- forcePluginActivation="true"
- property="org.eclipse.papyrus.views.modelexplorer.tester.isEObject"
- value="true">
- </test>
+ <and>
+ <with
+ variable="activePart">
+ <instanceof
+ value="org.eclipse.papyrus.views.modelexplorer.ModelExplorerPageBookView">
+ </instanceof>
+ </with>
+ <test
+ forcePluginActivation="true"
+ property="org.eclipse.papyrus.views.modelexplorer.tester.isEObject"
+ value="true">
+ </test>
+ </and>
</with>
</activeWhen>
</handler>

Back to the top