Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2020-05-25 11:21:31 +0000
committerLars Vogel2020-06-07 16:51:45 +0000
commitc9198b29c5d55b43b22217b85fb0b415c0d14935 (patch)
treea913c5dd6cc112506f7dbd580d427d83f797114e
parent1e09d362b51b929484570e5411de384b0f0d5711 (diff)
downloadeclipse.platform.ui-c9198b29c5d55b43b22217b85fb0b415c0d14935.tar.gz
eclipse.platform.ui-c9198b29c5d55b43b22217b85fb0b415c0d14935.tar.xz
eclipse.platform.ui-c9198b29c5d55b43b22217b85fb0b415c0d14935.zip
Bug 563547 - Replaces layout call in ActionBars#updateActionBars with
requestLayout call Change-Id: I5d2c59726193f5afaaac01fb886af98ce945ccda Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ActionBars.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ActionBars.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ActionBars.java
index ba082303e90..c51d9a4ead6 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ActionBars.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ActionBars.java
@@ -85,7 +85,7 @@ public class ActionBars extends SubActionBars {
// Specifically lay out the CTF
if (packParent.getParent() instanceof CTabFolder)
- packParent.getParent().layout(true);
+ packParent.requestLayout();
}
}

Back to the top