| Summary: | [Compatibility] Two 'Delete' menu items in the 'Edit' menu | ||
|---|---|---|---|
| Product: | [Eclipse Project] Platform | Reporter: | Remy Suen <remy.suen> |
| Component: | UI | Assignee: | Michael Rennie <Michael_Rennie> |
| Status: | RESOLVED WORKSFORME | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | Michael_Rennie, pwebster |
| Version: | 4.2 | ||
| Target Milestone: | 4.2 M7 | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
| Bug Depends on: | |||
| Bug Blocks: | 350080 | ||
|
Description
Remy Suen
This is caused by a combination of action sets and menu contributions.
<extension point="org.eclipse.ui.actionSets">
<actionSet label="label"
id="actionSetId"
visible="false">
<action class="a.b.c.ActionSetAction"
id="actionSetAction"
label="Action" menubarPath="edit/x"/>
</actionSet>
</extension>
<extension point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:edit?before=x">
<command commandId="org.eclipse.ui.edit.delete"/>
</menuContribution>
</extension>
The extra separator generated by ActionSet's contributeMenuGroup(*) seems to be the cause behind this problem. Having difficulties finding similar code in 3.x, or at least code that goes searching through the menu manager for a separator of a given id anyway. Michael, you just installed Jubula, right? Is this still a problem? PW (In reply to comment #3) > Michael, you just installed Jubula, right? Is this still a problem? > > PW Using: Version: 4.2.0 Build id: N20120417-2000 I do not see this issue any longer. Closing. |