diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2008-11-04 14:18:10 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2008-11-04 14:18:10 +0000 |
commit | 07095d4e5fcd3fe41d1d0663422e26531b364288 (patch) | |
tree | cc709199e54e46583010397c13008fa622652a5c /src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java | |
parent | 8f56bfcef48a74fd5f4e0afa7699bc9c25cba49c (diff) | |
download | vaadin-framework-07095d4e5fcd3fe41d1d0663422e26531b364288.tar.gz vaadin-framework-07095d4e5fcd3fe41d1d0663422e26531b364288.zip |
IOrderedLayout no more breaks with Panels
svn changeset:5816/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java')
-rw-r--r-- | src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java b/src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java index 5ce5381fdb..fec121557b 100644 --- a/src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java +++ b/src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java @@ -80,11 +80,7 @@ public class LabelExample extends CustomComponent { }
};
- // FIXME orderedlayout currently breaks panels in grid very oddly
- p.setLayout(new GridLayout());
p.addStyleName(Panel.STYLE_LIGHT);
- p.setWidth("100%");
- p.getLayout().setWidth("100%");
return p;
}
}
|