Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2020-05-29 10:22:02 +0000
committerLars Vogel2020-06-07 10:52:32 +0000
commite6806155007d916f49c20e3f8efae4e5d03d1d10 (patch)
treed35e0c8f90b4f724f697633fa722105133ba17b1
parent5e016510047aeb8cc15be901f8bce9f59ca1cb30 (diff)
downloadeclipse.platform.text-e6806155007d916f49c20e3f8efae4e5d03d1d10.tar.gz
eclipse.platform.text-e6806155007d916f49c20e3f8efae4e5d03d1d10.tar.xz
eclipse.platform.text-e6806155007d916f49c20e3f8efae4e5d03d1d10.zip
Bug 563708 - Replace layout call on parent with requestLayout call inI20200607-1800
StatusTextEditor Change-Id: If403df579a05e4c6ce64057f328ac2058c68ae96 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/StatusTextEditor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/StatusTextEditor.java b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/StatusTextEditor.java
index 4d113a4a366..2716e70c4a3 100644
--- a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/StatusTextEditor.java
+++ b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/StatusTextEditor.java
@@ -108,7 +108,7 @@ public class StatusTextEditor extends AbstractTextEditor {
if (fStackLayout.topControl != front) {
fStackLayout.topControl= front;
- fParent.layout();
+ front.requestLayout();
updateStatusFields();
}

Back to the top