From 868cc1df627d566a833210acbfad066679e3f993 Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Tue, 6 Nov 2007 09:11:13 +0000 Subject: [PATCH] fixed wrong function name + fixes to tabsheet svn changeset:2718/svn branch:trunk --- .../itmill/toolkit/terminal/gwt/client/ui/ICustomLayout.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() { -- 2.39.5