Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2012-02-23 22:12:09 +0000
committerPawel Piech2012-02-27 19:40:46 +0000
commitd9bd6feb323ba509f5ab04b03324c000fa662b11 (patch)
tree3cdb01a37bbf652515467956ae86d23ca991b6b7
parent9d5cb2fc195dcf9711499f5e3782dd6e0e3da3e4 (diff)
downloadeclipse.platform.debug-d9bd6feb323ba509f5ab04b03324c000fa662b11.tar.gz
eclipse.platform.debug-d9bd6feb323ba509f5ab04b03324c000fa662b11.tar.xz
eclipse.platform.debug-d9bd6feb323ba509f5ab04b03324c000fa662b11.zip
[Bug 372424] New: Skip All Breakpoints tool is not in a logical place in the toolbarv20120227-1940
-rw-r--r--org.eclipse.debug.ui/plugin.xml12
1 files changed, 10 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index b4f901d07..1bc0af630 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -482,7 +482,7 @@
</action>
<action
id="org.eclipse.debug.internal.ui.actions.RunDropDownAction"
- toolbarPath="debug"
+ toolbarPath="org.eclipse.debug.ui.launch.toolbar/launchGroup"
hoverIcon="$nl$/icons/full/etool16/run_exc.gif"
class="org.eclipse.debug.internal.ui.actions.RunToolbarAction"
disabledIcon="$nl$/icons/full/dtool16/run_exc.gif"
@@ -517,7 +517,7 @@
</action>
<action
id="org.eclipse.debug.internal.ui.actions.DebugDropDownAction"
- toolbarPath="debug"
+ toolbarPath="org.eclipse.debug.ui.launch.toolbar/launchGroup"
hoverIcon="$nl$/icons/full/etool16/debug_exc.gif"
class="org.eclipse.debug.internal.ui.actions.DebugToolbarAction"
disabledIcon="$nl$/icons/full/dtool16/debug_exc.gif"
@@ -655,6 +655,14 @@
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
+ id="org.eclipse.debug.ui.launch.toolbar"
+ label="%LaunchActionSet.label">
+ <separator
+ name="launchGroup"
+ visible="true">
+ </separator>
+ </toolbar>
+ <toolbar
id="org.eclipse.debug.ui.main.toolbar"
label="%DebugActionSet.label">
<separator

Back to the top