Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2016-12-06 05:13:12 +0000
committerSarika Sinha2016-12-06 05:13:12 +0000
commit5f987704a5a2128e13a6064cb9a179045c407e60 (patch)
tree3cdac73ac28503d063b75420a0f04921ed8169e1
parentc004c5538dd6ff0ddc5032f687542bdf51ced43d (diff)
downloadeclipse.platform.debug-5f987704a5a2128e13a6064cb9a179045c407e60.tar.gz
eclipse.platform.debug-5f987704a5a2128e13a6064cb9a179045c407e60.tar.xz
eclipse.platform.debug-5f987704a5a2128e13a6064cb9a179045c407e60.zip
Bug 508695 - Breakpoints view menu > "[Group|Sort] By": use same orderI20161206-2000I20161206-0800
as Problems view Change-Id: I4b64908b7519f198f335bedfa1418414b7df4449
-rw-r--r--org.eclipse.debug.ui/plugin.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index cfcd73fe9..a6e400853 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -846,14 +846,6 @@
tooltip="%setDefaultGroup.tooltip">
</action>
<action
- id="org.eclipse.debug.ui.breakpointsView.toolbar.groupByAction"
- menubarPath="defaultBreakpointGroup"
- class="org.eclipse.debug.internal.ui.actions.breakpointGroups.GroupBreakpointsByAction"
- helpContextId="group_breakpoints_by_action_context"
- label="%GroupBy.label"
- tooltip="%GroupBy.tooltip">
- </action>
- <action
id="org.eclipse.debug.ui.breakpointsView.toolbar.sortByAction"
menubarPath="defaultBreakpointGroup"
class="org.eclipse.debug.internal.ui.actions.breakpointSortBy.SortBreakpointsByAction"
@@ -861,6 +853,14 @@
label="%SortBy.label"
tooltip="%SortBy.tooltip">
</action>
+ <action
+ id="org.eclipse.debug.ui.breakpointsView.toolbar.groupByAction"
+ menubarPath="defaultBreakpointGroup"
+ class="org.eclipse.debug.internal.ui.actions.breakpointGroups.GroupBreakpointsByAction"
+ helpContextId="group_breakpoints_by_action_context"
+ label="%GroupBy.label"
+ tooltip="%GroupBy.tooltip">
+ </action>
</viewContribution>
<!-- Contributions to Expression View Toolbar -->
<viewContribution

Back to the top