From: Matti Tahvonen Date: Tue, 6 Nov 2007 09:11:13 +0000 (+0000) Subject: fixed wrong function name + fixes to tabsheet X-Git-Tag: 6.7.0.beta1~5662 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=868cc1df627d566a833210acbfad066679e3f993;p=vaadin-framework.git fixed wrong function name + fixes to tabsheet svn changeset:2718/svn branch:trunk --- diff --git a/src/com/itmill/toolkit/terminal/gwt/client/ui/ICustomLayout.java b/src/com/itmill/toolkit/terminal/gwt/client/ui/ICustomLayout.java index c1841e0811..1901a2b010 100644 --- a/src/com/itmill/toolkit/terminal/gwt/client/ui/ICustomLayout.java +++ b/src/com/itmill/toolkit/terminal/gwt/client/ui/ICustomLayout.java @@ -352,7 +352,7 @@ public class ICustomLayout extends ComplexPanel implements Paintable, public void iLayout() { if (!iLayoutJS(DOM.getFirstChild(getElement()))) { - Util.runAncestorsLayout(this); + Util.runDescendentsLayout(this); } } @@ -362,7 +362,7 @@ public class ICustomLayout extends ComplexPanel implements Paintable, * containers in custom layout he/she can notify children after resize. */ public void notifyChildrenOfSizeChange() { - Util.runAncestorsLayout(this); + Util.runDescendentsLayout(this); } public void onDetach() {