Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormegumi.telles2015-10-07 14:46:42 +0000
committerMegumi Telles2015-10-08 15:01:26 +0000
commitc4304aa112faf852deb63e3ac667e7f00725502b (patch)
treedabbfc6318f5afb91a243324f3627c58e4a2197a
parent84c6e0f98700d8328d8f9d9fbb1b755e6f6fbda9 (diff)
downloadorg.eclipse.osee-c4304aa112faf852deb63e3ac667e7f00725502b.tar.gz
org.eclipse.osee-c4304aa112faf852deb63e3ac667e7f00725502b.tar.xz
org.eclipse.osee-c4304aa112faf852deb63e3ac667e7f00725502b.zip
bug[ats_ATS227404]: Fix error using right-click -> open
-rw-r--r--plugins/org.eclipse.osee.framework.ui.skynet/plugin.xml64
1 files changed, 54 insertions, 10 deletions
diff --git a/plugins/org.eclipse.osee.framework.ui.skynet/plugin.xml b/plugins/org.eclipse.osee.framework.ui.skynet/plugin.xml
index 48ffb021001..608751e3556 100644
--- a/plugins/org.eclipse.osee.framework.ui.skynet/plugin.xml
+++ b/plugins/org.eclipse.osee.framework.ui.skynet/plugin.xml
@@ -553,7 +553,7 @@
<with
variable="activePartId">
<equals
- value="org.eclipse.osee.framework.ui.skynet.widgets.xchange.ChangeView">
+ value="org.eclipse.osee.framework.ui.skynet.change.ChangeReportEditor">
</equals>
</with>
<with
@@ -765,14 +765,58 @@
<handler
class="org.eclipse.osee.framework.ui.skynet.commandHandlers.renderer.handlers.OpenHandler"
commandId="org.eclipse.osee.framework.ui.skynet.open.command">
- <enabledWhen>
- <with
- variable="selection">
- <count
- value="+">
- </count>
- </with>
- </enabledWhen>
+ <activeWhen>
+ <or>
+ <with
+ variable="activePartId">
+ <equals
+ value="org.eclipse.osee.framework.ui.skynet.massEditor.MassArtifactEditor">
+ </equals>
+ </with>
+ <with
+ variable="activePartId">
+ <equals
+ value="org.eclipse.osee.framework.ui.skynet.ArtifactExplorer">
+ </equals>
+ </with>
+ <with
+ variable="activePartId">
+ <equals
+ value="org.eclipse.osee.ats.world.WorldEditor">
+ </equals>
+ </with>
+ <with
+ variable="activePartId">
+ <equals
+ value="org.eclipse.search.ui.views.SearchView">
+ </equals>
+ </with>
+ <with
+ variable="activePartId">
+ <equals
+ value="org.eclipse.osee.framework.ui.skynet.results.ResultsEditor">
+ </equals>
+ </with>
+ <with
+ variable="activePartId">
+ <equals
+ value="org.eclipse.osee.ats.editor.TaskEditor">
+ </equals>
+ </with>
+ <with
+ variable="activePartId">
+ <equals
+ value="org.eclipse.osee.ats.editor.SMAEditor">
+ </equals>
+ </with>
+ <with
+ variable="activePartId">
+ <equals
+ value="org.eclipse.osee.framework.ui.skynet.change.ChangeReportEditor">
+ </equals>
+ </with>
+ </or>
+ </activeWhen>
</handler>
<handler
class="org.eclipse.osee.framework.ui.skynet.commandHandlers.renderer.handlers.OtherEditorHandler"
@@ -1580,4 +1624,4 @@
</commandParameter>
</command>
</extension>
-</plugin> \ No newline at end of file
+</plugin>

Back to the top