Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2011-10-20 19:00:04 +0000
committerPawel Piech2011-10-20 19:00:04 +0000
commit2c9488da649bd0f8a92dcc07ce314f109dc20622 (patch)
tree213c993c39a64cc1729d325bdb84a36453897b5c /org.eclipse.debug.ui/plugin.xml
parent32e85a04193f7df1307c13eec1b647654bb26cef (diff)
downloadeclipse.platform.debug-2c9488da649bd0f8a92dcc07ce314f109dc20622.tar.gz
eclipse.platform.debug-2c9488da649bd0f8a92dcc07ce314f109dc20622.tar.xz
eclipse.platform.debug-2c9488da649bd0f8a92dcc07ce314f109dc20622.zip
Bug 258767 - (Added "Drop to Frame" and "Run to Line" actions tov20111024-1547
toolbar).
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml19
1 files changed, 18 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 300c61aec..2590b01af 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -308,6 +308,15 @@
state="false">
</action>
<action
+ id="org.eclipse.debug.ui.actions.DropToFrame"
+ class="org.eclipse.debug.internal.ui.commands.actions.DropToFrameCommandActionDelegate"
+ definitionId="org.eclipse.debug.ui.commands.DropToFrame"
+ icon="$nl$/icons/full/elcl16/drop_to_frame.gif"
+ helpContextId="org.eclipse.debug.ui.drop_to_frame_action_context"
+ label="%DropToFrame.label"
+ toolbarPath="org.eclipse.debug.ui.main.toolbar/renderGroup">
+ </action>
+ <action
id="org.eclipse.debug.ui.actions.RunToLine"
class="org.eclipse.debug.internal.ui.actions.RetargetRunToLineAction"
definitionId="org.eclipse.debug.ui.commands.RunToLine"
@@ -315,7 +324,8 @@
disabledIcon="$nl$/icons/full/dlcl16/runtoline_co.gif"
icon="$nl$/icons/full/elcl16/runtoline_co.gif"
label="%RunToLine.label"
- menubarPath="org.eclipse.ui.run/emptyStepGroup">
+ menubarPath="org.eclipse.ui.run/emptyStepGroup"
+ toolbarPath="org.eclipse.debug.ui.main.toolbar/emptyStepGroup">
</action>
<action
id="org.eclipse.debug.ui.actions.StepReturn"
@@ -580,6 +590,13 @@
</actionSet>
</extension>
+ <!-- By default hide the Run-to-Line toolbar item (bug 25876 comment #77) -->
+ <extension point="org.eclipse.ui.perspectiveExtensions">
+ <perspectiveExtension targetID="*">
+ <hiddenToolBarItem id="org.eclipse.debug.ui.commands.RunToLine"/>
+ </perspectiveExtension>
+ </extension>
+
<!-- Command framework contribution for the main menu -->
<extension
point="org.eclipse.ui.menus">

Back to the top