Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 253977 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/ui/views/properties/PropertySheet.java (-1 / +3 lines)
Lines 167-173 Link Here
167
     * The property sheet may show properties for any view other than this view.
167
     * The property sheet may show properties for any view other than this view.
168
     */
168
     */
169
    protected boolean isImportant(IWorkbenchPart part) {
169
    protected boolean isImportant(IWorkbenchPart part) {
170
        return part != this;
170
    	// Hack! explicitly exclude the Help view as a participant
171
    	boolean isHelpView = part.getSite().getId().equals("org.eclipse.help.ui.HelpView"); //$NON-NLS-1$
172
        return part != this && !isHelpView;
171
    }
173
    }
172
174
173
    /**
175
    /**

Return to bug 253977