diff options
Diffstat (limited to 'src/com/itmill/toolkit/tests/TestBench.java')
-rw-r--r-- | src/com/itmill/toolkit/tests/TestBench.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/itmill/toolkit/tests/TestBench.java b/src/com/itmill/toolkit/tests/TestBench.java index b6d95efbe2..7787d5c2bc 100644 --- a/src/com/itmill/toolkit/tests/TestBench.java +++ b/src/com/itmill/toolkit/tests/TestBench.java @@ -49,7 +49,7 @@ public class TestBench extends com.itmill.toolkit.Application implements HashMap itemCaptions = new HashMap(); public void init() { - + setTheme("demo"); // Add testable classes to hierarchical container @@ -97,11 +97,11 @@ public class TestBench extends com.itmill.toolkit.Application implements menu.setImmediate(true); mainLayout.addComponent(menu); - + bodyLayout.setHeight(100); bodyLayout.setHeightUnits(Panel.UNITS_PERCENTAGE); bodyLayout.setLayout(new ExpandLayout()); - + mainLayout.addComponent(bodyLayout); mainWindow.setLayout(mainLayout); |