Bug 563708 - Replace layout call on parent with requestLayout call in
StatusTextEditor

Change-Id: If403df579a05e4c6ce64057f328ac2058c68ae96
Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
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 4d113a4..2716e70 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 @@
 
 		if (fStackLayout.topControl != front) {
 			fStackLayout.topControl= front;
-			fParent.layout();
+			front.requestLayout();
 			updateStatusFields();
 		}