Community
Participate
Working Groups
* The property sheet may show properties for any view other than this view.
*/
protected boolean isImportant(IWorkbenchPart part) {
return part != this;
// Hack! explicitly exclude the Help view as a participant
boolean isHelpView = part.getSite().getId().equals("org.eclipse.help.ui.HelpView"); //$NON-NLS-1$
return part != this && !isHelpView;
}
/**