wbstr / vaadin-multifileupload

12 stars 23 forks source link

HorizontalLayout.setExpandRatio(otherComponent, ...) makes the upload button invisible #55

Open FollowSteph opened 7 years ago

FollowSteph commented 7 years ago

I have no idea why but the following code seems to make the Upload button invisible...

HorizontalLayout horizontalLayout = new HorizontalLayout();
Label testLabel = new Label("test");
horizontalLayout.addComponent(testLabel);
horizontalLayout.setExpandRatio(testLabel, 1.0f);
horizontalLayout.addComponent(multiFileUpload);