diff options
author | Artur Signell <artur.signell@itmill.com> | 2008-10-01 08:43:23 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2008-10-01 08:43:23 +0000 |
commit | 5e882603dead994c46f940338d9dc11379b104c8 (patch) | |
tree | 056b7c6c506fef05171e0576946f65bad8890c20 | |
parent | b691f7f4a45d5203c99eb7f527df7351096fe044 (diff) | |
download | vaadin-framework-5e882603dead994c46f940338d9dc11379b104c8.tar.gz vaadin-framework-5e882603dead994c46f940338d9dc11379b104c8.zip |
Fixed TestBench layout problem
svn changeset:5573/svn branch:trunk
-rw-r--r-- | src/com/itmill/toolkit/tests/TestBench.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/itmill/toolkit/tests/TestBench.java b/src/com/itmill/toolkit/tests/TestBench.java index 963c31488f..52c041422c 100644 --- a/src/com/itmill/toolkit/tests/TestBench.java +++ b/src/com/itmill/toolkit/tests/TestBench.java @@ -116,7 +116,7 @@ public class TestBench extends com.itmill.toolkit.Application implements mainLayout.addComponent(menu); bodyLayout.addStyleName("light"); - bodyLayout.setHeight(100, Component.UNITS_PERCENTAGE); + bodyLayout.setSizeFull(); bodyLayout.setLayout(new ExpandLayout()); mainLayout.addComponent(bodyLayout); |