no scrollbar double problem

The table in the picture is on a VerticalLayout, that’s the content of a class that extends Panel and sets scrollable true

public SumsAnalysisContent() {
		setSizeFull();
		setScrollable(true);
	}

The second problem is that the panel itself is part of a SplitPanel that’s suppose to have a scrollbar, and i even added the VerticalLayout that contains the table directly with setSecondComponent.
11361.png
11360.png

The solution was simple it came from @Wolfie in #vaadin.
The scrollbar needs a defined size, so i set the VerticalLayout to setSizeUndefined(), which snaps to the content defined size ( i had it on setSizeFull() ).