From: Jouni Koivuviita Date: Thu, 14 May 2009 11:10:40 +0000 (+0000) Subject: Fixed a bug which caused IE7 to fail rendering (tab caption not set). X-Git-Tag: 6.7.0.beta1~2889 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4ff9b453dedc39db658b17991a4c06b70cd961ac;p=vaadin-framework.git Fixed a bug which caused IE7 to fail rendering (tab caption not set). svn changeset:7798/svn branch:6.0 --- diff --git a/src/com/vaadin/demo/featurebrowser/TableExample.java b/src/com/vaadin/demo/featurebrowser/TableExample.java index f1dfc1f187..1c9ac6c2d8 100644 --- a/src/com/vaadin/demo/featurebrowser/TableExample.java +++ b/src/com/vaadin/demo/featurebrowser/TableExample.java @@ -61,9 +61,9 @@ public class TableExample extends CustomComponent implements Action.Handler, // main layout final VerticalLayout main = new VerticalLayout(); - root.addComponent(main); main.setCaption("Basic Table"); main.setMargin(true); + root.addTab(main); // "source" table with bells & whistlesenabled source = new Table("All creatures");