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

(-)META-INF/MANIFEST.MF (-1 / +1 lines)
Lines 2-8 Link Here
2
Bundle-ManifestVersion: 2
2
Bundle-ManifestVersion: 2
3
Bundle-Name: %pluginName
3
Bundle-Name: %pluginName
4
Bundle-SymbolicName: org.eclipse.ui.views; singleton:=true
4
Bundle-SymbolicName: org.eclipse.ui.views; singleton:=true
5
Bundle-Version: 3.3.0.qualifier
5
Bundle-Version: 3.3.1.qualifier
6
Bundle-ClassPath: .
6
Bundle-ClassPath: .
7
Bundle-Activator: org.eclipse.ui.internal.views.ViewsPlugin
7
Bundle-Activator: org.eclipse.ui.internal.views.ViewsPlugin
8
Bundle-ActivationPolicy: lazy
8
Bundle-ActivationPolicy: lazy
(-)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! See Bug 253977...explicitly exclude the Help view as a participant
171
    	boolean isHelpView = "org.eclipse.help.ui.HelpView".equals(part.getSite().getId()); //$NON-NLS-1$
172
        return part != this && !isHelpView;
171
    }
173
    }
172
174
173
    /**
175
    /**

Return to bug 253977