aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/components/tree/TreeScrollingOnSelection.java
diff options
context:
space:
mode:
Diffstat (limited to 'uitest/src/com/vaadin/tests/components/tree/TreeScrollingOnSelection.java')
-rw-r--r--uitest/src/com/vaadin/tests/components/tree/TreeScrollingOnSelection.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/components/tree/TreeScrollingOnSelection.java b/uitest/src/com/vaadin/tests/components/tree/TreeScrollingOnSelection.java
index b3ab5c2b01..ba128025cd 100644
--- a/uitest/src/com/vaadin/tests/components/tree/TreeScrollingOnSelection.java
+++ b/uitest/src/com/vaadin/tests/components/tree/TreeScrollingOnSelection.java
@@ -7,6 +7,7 @@ import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.Label;
import com.vaadin.ui.Panel;
import com.vaadin.ui.Tree;
+import com.vaadin.ui.VerticalLayout;
public class TreeScrollingOnSelection extends TestBase {
private static final long serialVersionUID = 4082075610259697145L;
@@ -36,8 +37,10 @@ public class TreeScrollingOnSelection extends TestBase {
});
tree.setImmediate(true);
- Panel panel = new Panel();
- panel.addComponent(tree);
+ VerticalLayout panelLayout = new VerticalLayout();
+ panelLayout.setMargin(true);
+ Panel panel = new Panel(panelLayout);
+ panelLayout.addComponent(tree);
panel.setWidth("200px");
panel.setHeight("300px");