I have a HorizontalLayout:
HorizontalLayout mainLayout = new HorizontalLayout();
mainLayout.setSpacing(true);
mainLayout.addComponent(sidebar);
mainLayout.addComponent(editUserForm);
editUserForm consists of 2 TextField’s, 2 TwinColSelects and a footer (HorizontalLayout) containing 3 buttons (Save, Undo, Delete)
When the layout is painted, it cuts off the form. The edge is just a hair past the Delete button. Basically, it’s as if Vaadin does not “see” the form fields or their widths. I’m sure I can work around this, but not sure if this is a bug or not.