Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Moffatt2013-09-10 20:14:13 +0000
committerEric Moffatt2013-09-10 20:14:13 +0000
commitb26ac6b74678597edab1228bcb022842215fe924 (patch)
treeaa8893c9a5e14a666aac049b7833a678ec160184
parente6f79374eca103e2d3adc97a24d909be23cb8350 (diff)
downloadeclipse.platform.ui-b26ac6b74678597edab1228bcb022842215fe924.tar.gz
eclipse.platform.ui-b26ac6b74678597edab1228bcb022842215fe924.tar.xz
eclipse.platform.ui-b26ac6b74678597edab1228bcb022842215fe924.zip
Fix for Bug 416902 - Regression from 4.3: Navigation History badlyR4_3_1M20130911-1000
-rw-r--r--bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/PartServiceImpl.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/PartServiceImpl.java b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/PartServiceImpl.java
index 930f1583d92..c6b88981010 100644
--- a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/PartServiceImpl.java
+++ b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/PartServiceImpl.java
@@ -1028,6 +1028,7 @@ public class PartServiceImpl implements EPartService {
case VISIBLE:
MPart activePart = getActivePart();
if (activePart == null || getParent(activePart) == getParent(addedPart)) {
+ delegateBringToTop(addedPart);
activate(addedPart);
} else {
bringToTop(addedPart);

Back to the top