Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2020-05-28 09:36:49 +0000
committerLars Vogel2020-06-19 12:26:15 +0000
commitf2f326c7a8c0d4712333736521c74ae7b0501cc0 (patch)
tree71e586393b82d0f3024a345d1ae4c166785236bc
parented4c96aea6a0d1e77b8a5b9e8793144ddda2ded0 (diff)
downloadeclipse.platform.ui-f2f326c7a8c0d4712333736521c74ae7b0501cc0.tar.gz
eclipse.platform.ui-f2f326c7a8c0d4712333736521c74ae7b0501cc0.tar.xz
eclipse.platform.ui-f2f326c7a8c0d4712333736521c74ae7b0501cc0.zip
Bug 563547 - Removes layout / requestLayout call in ActionBars
The renderer are responsible for updating their elements, this additional call is mostly likely their to cover up a layout bug or an already fixed layout bug Change-Id: I7ddab7938007811644cdaabf422ac1fbfce970cc 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.java4
1 files changed, 0 insertions, 4 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 bbc3c793515..b224a2361b6 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
@@ -79,10 +79,6 @@ public class ActionBars extends SubActionBars {
if (!tbCtrl.isDisposed()) {
Control packParent = getPackParent(tbCtrl);
packParent.pack();
-
- // Specifically lay out the CTF
- if (packParent.getParent() instanceof CTabFolder)
- packParent.requestLayout();
}
}

Back to the top