Hi,
I migrate to the Vaadin 6.3.0 version, It is well and very nice!!
But, I have a problem in All my
Embedded components
for example: I put an image using Embedded component in a VertivalLayout, the first screen-shot using the old version
Vaadin 6.2.4
shows the image in correct possition what i want (no margin, and no spacing). And the second screen-shot using
Vaadin 6.3.0
version shows the image differently (with margin)!!
there is my code:
VerticalLayout bglayout = new VerticalLayout();
bglayout.setHeight("150px");
bglayout.addComponent(new Embedded("",new ThemeResource("images/imgtest.png")));
Can some one explain me whats the problem??