Community
Participate
Working Groups
1) Start Eclipse 3.1.1. 2) Create a plug-in project. Select the 'Hello, World' template. 3) Edit the plugin.xml as follows: I modified the <menu> tag and 'menubarPath' to put the command in the menupath of 'project/additions'. I also removed 'toolbarPath'. <?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.0"?> <plugin> <extension point="org.eclipse.ui.actionSets"> <actionSet label="Sample Action Set" visible="true" id="plg01.actionSet"> <menu label="&Project" id="project" path="additions"> <separator name="sampleGroup"> </separator> </menu> <action label="&Sample Action" icon="icons/sample.gif" class="plg01.actions.SampleAction" tooltip="Hello, Eclipse world" menubarPath="project/sampleGroup" id="plg01.actions.SampleAction"> </action> </actionSet> </extension> </plugin> 4) Run the plugin using Eclipse Application. 5) Select [Windows] > [Customize Perspective] in the runtime workbench. 6) Select [Commands] tab in the [Customize Perspective] dialog. You will see the [Project] > [Sample Action] entry appears twice in the [Menubar details]. Is there any workaround?
*** Bug 135451 has been marked as a duplicate of this bug. ***
I might have been a little hasty, so this use case must be included as well: Hi, when i select multiple UI elements and right click, the context menu has multiple entries of the same menu. problem description with an example! -i have an object contribution on objects A and B. -both these derieve from the super class Z. the comman menus required are put under the object contribution Z. - now when i select 2 objects of the same type , things work fine. - but when i select 2 objects, one of type A and the other of type B, then the menus under the object contribution Z apper multiple times. PW
This is marked P2. Do we plan to fix this for R3.4?
Paul, is this still an issue?
This is not P2, it appears to be the customize action bars in the CustomizePerpsective dialog reading the action set as separate from the main Project menu. PW
OK, I'll look at this during the leak testing since that scenario requires that I have 5 classes (I can just make two of them subclasses of another...;-).
CQ:WIND00414961 What is the status of this in the context of Eclipse 4 ?
Is it still valid? I can not reproduce it in the Eclipse 4.4 (build N20131123-1500) Daniel
(In reply to Daniel Rolka from comment #8) > Is it still valid? I can not reproduce it in the Eclipse 4.4 (build > N20131123-1500) > > Daniel I'm also unable to reproduce it anymore. I mark it as fixed with Luna