| [mylyn-integrators] How to hide popupMenus on others connectors |
|
Hi all,
I have added in my fusion forge plugin a new extension point (org.eclipse.ui.popupMenus) in plugin.xml that it starts my action. When I click on my fusion forge connector I just start my action (my custom wizard). It works. <extension point="org.eclipse.ui.popupMenus"> <viewerContribution id="org.eclipse.mylyn.tasks.ui.viewerContribution" targetID="org.eclipse.mylyn.tasks.ui.views.repositories"> <action class="MyAction" ... </action> </viewerContribution> </extension> If I click on other connector (for instance bugzilla) I have this action too, but I want to hide this action on others connector. How can I do it? Thanks Pasquale |