Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Webster2013-07-29 18:23:18 +0000
committerPaul Webster2013-11-19 21:49:41 +0000
commit8550a458a701d9cacb2c14f6ddcd2f536885c8fd (patch)
tree0fe8abc8e1ef46e500bdf6c07bd6e05ebff08b2f
parenteb2242c323b0e985c0f3bbb8add11f30471238c5 (diff)
downloadeclipse.platform.ui-8550a458a701d9cacb2c14f6ddcd2f536885c8fd.tar.gz
eclipse.platform.ui-8550a458a701d9cacb2c14f6ddcd2f536885c8fd.tar.xz
eclipse.platform.ui-8550a458a701d9cacb2c14f6ddcd2f536885c8fd.zip
Bug 400042 - Help of Shell is overriden by Eclipse when Workbench starts
Move help system registration to earlier in the startup similar to 3.x
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java
index 5d939352092..18715d92bfc 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java
@@ -547,6 +547,7 @@ public class WorkbenchWindow implements IWorkbenchWindow {
cs.activateContext(IContextService.CONTEXT_ID_WINDOW);
cs.getActiveContextIds();
+ workbench.getHelpSystem().setHelp(getShell(), IWorkbenchHelpContextIds.WORKBENCH_WINDOW);
initializeDefaultServices();
@@ -678,7 +679,6 @@ public class WorkbenchWindow implements IWorkbenchWindow {
preferenceStore.setValue(IWorkbenchPreferenceConstants.ENABLE_ANIMATIONS, enableAnimations);
getShell().setData(this);
- workbench.getHelpSystem().setHelp(getShell(), IWorkbenchHelpContextIds.WORKBENCH_WINDOW);
trackShellActivation();
}

Back to the top