| [news.eclipse.platform.rcp] Re: How to remove the " Other..." menu item in File->New submenu |
I have not come across any direct ways to do this. A dirty method would be to modify the code. The "Other" menu item is added by method addItems(List list) in class BaseNewWizardMenu. This class is in org.eclipse.ui.actions in org.eclipse.workbenck plugin. Comment out the statement list.add(new ActionContributionItem(getShowDialogAction())); in the method.