Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pingel2011-11-10 20:15:24 +0000
committerSteffen Pingel2011-11-17 21:32:24 +0000
commitc34e4da0668729c790d2ff685f4db7f74180825c (patch)
tree0382a8e637751fea6b2425a2827696934acedd64
parenteff786135d5b95ad51f2caeb36d887a1924c800f (diff)
downloadorg.eclipse.mylyn.tasks-c34e4da0668729c790d2ff685f4db7f74180825c.tar.gz
org.eclipse.mylyn.tasks-c34e4da0668729c790d2ff685f4db7f74180825c.tar.xz
org.eclipse.mylyn.tasks-c34e4da0668729c790d2ff685f4db7f74180825c.zip
NEW - bug 363496: Command org.eclipse.mylyn.task.ui.editor.QuickOutline
visible on any editor https://bugs.eclipse.org/bugs/show_bug.cgi?id=363496 Change-Id: Ifea3a85d04e9294b16ace8142eb37ff5dff76145
-rw-r--r--org.eclipse.mylyn.tasks.ui/plugin.xml12
1 files changed, 10 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/plugin.xml b/org.eclipse.mylyn.tasks.ui/plugin.xml
index c9316d897..75c3ffe9b 100644
--- a/org.eclipse.mylyn.tasks.ui/plugin.xml
+++ b/org.eclipse.mylyn.tasks.ui/plugin.xml
@@ -867,8 +867,16 @@
categoryId="org.eclipse.mylyn.tasks.ui.commands"/>
</extension>
<extension point="org.eclipse.ui.handlers">
- <handler commandId="org.eclipse.mylyn.task.ui.editor.QuickOutline"
- class="org.eclipse.mylyn.internal.tasks.ui.editors.outline.ShowQuickOutlineHandler"/>
+ <handler
+ class="org.eclipse.mylyn.internal.tasks.ui.editors.outline.ShowQuickOutlineHandler"
+ commandId="org.eclipse.mylyn.task.ui.editor.QuickOutline">
+ <activeWhen>
+ <with variable="activePartId">
+ <equals
+ value="org.eclipse.mylyn.tasks.ui.editors.task"/>
+ </with>
+ </activeWhen>
+ </handler>
</extension>
<extension
point="org.eclipse.ui.menus">

Back to the top