[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.tools.jdt] Re: JDT Sub-menu ALWAYS appears on MY context menus

I resolved this issue. Inorder to prevent these global menu items from appearing in your context menus, we have to use a new API to register the context menu manager in the editor.

Old Code:

getSite().registerContextMenu(menuID, menuManager, getSite().getSelectionProvider);

New Code:

((IEditorSite)getSite()).registerContextMenu(menuID, menuManager, getSite().getSelectionProvider(), false);

The false flag tells Platform to not use the global menus.

sapna