]> source.dussan.org Git - vaadin-framework.git/commitdiff
Vertical splitpanel renders only splitter (draggable) and nothing from component...
authorJani Laakso <jani.laakso@itmill.com>
Wed, 31 Oct 2007 11:22:35 +0000 (11:22 +0000)
committerJani Laakso <jani.laakso@itmill.com>
Wed, 31 Oct 2007 11:22:35 +0000 (11:22 +0000)
See test case.

svn changeset:2634/svn branch:trunk

src/com/itmill/toolkit/tests/TestSplitPanel.java

index b7cec1c73b5333a143d14cfcee4d2551febdb287..986d9c51ee6ca7c9ed49da966ff3e86d0bc625dc 100644 (file)
@@ -6,8 +6,11 @@ public class TestSplitPanel extends com.itmill.toolkit.Application {
 
        SplitPanel horizontalSplit = new SplitPanel(
                        SplitPanel.ORIENTATION_HORIZONTAL);
+       // this works
+       //SplitPanel verticalSplit = new SplitPanel(SplitPanel.ORIENTATION_HORIZONTAL);
+       // TODO: this does NOT work
        SplitPanel verticalSplit = new SplitPanel(SplitPanel.ORIENTATION_VERTICAL);
-
+       
        public void init() {
                Window mainWindow = new Window("Feature Browser");
                setMainWindow(mainWindow);