Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrik Suzzi2017-12-12 00:18:05 +0000
committerPatrik Suzzi2017-12-12 10:52:08 +0000
commit4dbba199c186da6624f2f5e4167fd1736858a6b0 (patch)
treeb867ac8fb6c894a30f6cf1210d751ad13b60e909
parentc21447700802ed55f98ba98a66c85bda2b5d86de (diff)
downloadeclipse.platform.debug-4dbba199c186da6624f2f5e4167fd1736858a6b0.tar.gz
eclipse.platform.debug-4dbba199c186da6624f2f5e4167fd1736858a6b0.tar.xz
eclipse.platform.debug-4dbba199c186da6624f2f5e4167fd1736858a6b0.zip
Bug 507090 - Icons for run as/debug as context menuI20171212-2000
With this change, we add proper icons to the "Run As" and "Debug As" submenus, both in the context menu and in the top level menu. Change-Id: I5bdca81338980415e755d3df8365afe81e2b2281 Signed-off-by: Patrik Suzzi <psuzzi@gmail.com>
-rw-r--r--org.eclipse.debug.ui/plugin.xml14
1 files changed, 10 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 530e48f1f..d5bf76fd1 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -450,7 +450,9 @@
</action>
<action
class="org.eclipse.debug.internal.ui.actions.RunAsAction"
+ disabledIcon="$nl$/icons/full/dtool16/run_exc.png"
helpContextId="run_with_configuration_action_context"
+ icon="$nl$/icons/full/etool16/run_exc.png"
id="org.eclipse.debug.internal.ui.actions.RunWithConfigurationAction"
label="%RunWithConfigurationAction.label"
menubarPath="org.eclipse.ui.run/runGroup"
@@ -506,12 +508,14 @@
menubarPath="org.eclipse.ui.run/debugGroup">
</action>
<action
- label="%DebugWithConfigurationAction.label"
- style="pulldown"
- helpContextId="debug_with_configuration_action_context"
class="org.eclipse.debug.internal.ui.actions.DebugAsAction"
+ disabledIcon="$nl$/icons/full/dtool16/debug_exc.png"
+ helpContextId="debug_with_configuration_action_context"
+ icon="$nl$/icons/full/etool16/debug_exc.png"
+ id="org.eclipse.debug.internal.ui.actions.DebugWithConfigurationAction"
+ label="%DebugWithConfigurationAction.label"
menubarPath="org.eclipse.ui.run/debugGroup"
- id="org.eclipse.debug.internal.ui.actions.DebugWithConfigurationAction">
+ style="pulldown">
</action>
<action
label="%DebugHistoryMenuAction.label"
@@ -1162,6 +1166,7 @@
<action
class="org.eclipse.debug.internal.ui.actions.DebugContextualLaunchAction"
enablesFor="+"
+ icon="$nl$/icons/full/etool16/debug_exc.png"
id="org.eclipse.debug.ui.contextualLaunch.debug.submenu"
label="%DebugContextMenu.label"
menubarPath="additions"
@@ -1207,6 +1212,7 @@
<action
class="org.eclipse.debug.internal.ui.actions.RunContextualLaunchAction"
enablesFor="+"
+ icon="$nl$/icons/full/etool16/run_exc.png"
id="org.eclipse.debug.ui.contextualLaunch.run.submenu"
label="%RunContextMenu.label"
menubarPath="additions"

Back to the top