]> source.dussan.org Git - vaadin-framework.git/commitdiff
Overflow: auto for split panels both sides
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 30 Oct 2007 09:49:57 +0000 (09:49 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 30 Oct 2007 09:49:57 +0000 (09:49 +0000)
svn changeset:2620/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/client/ui/ISplitPanel.java

index bc077c98fba86eddce73782543b1b3368bab531a..5e00cc5f4f65de7842379108c42222ce3bb8bf44 100644 (file)
@@ -84,8 +84,8 @@ public class ISplitPanel extends ComplexPanel implements Paintable,
                DOM.setStyleAttribute(splitter, "position", "absolute");
                DOM.setStyleAttribute(secondContainer, "position", "absolute");
 
-               DOM.setStyleAttribute(firstContainer, "overflow", "hidden");
-               DOM.setStyleAttribute(secondContainer, "overflow", "hidden");
+               DOM.setStyleAttribute(firstContainer, "overflow", "auto");
+               DOM.setStyleAttribute(secondContainer, "overflow", "auto");
 
        }