I have been trying to remove a blank space at the beginning of a libgdx table (it is a table inside a table inside a scrollPane).
The only thing I have found on the matter is to remove the line
setFillParent(true);
And I dont have that anywhere in my code
here is my adding to the table
colorTable.add(colorTitleBar).width(350).height(120);
colorTable.row();
colorTable.add(colorChoices).width(350).height(120);
colorTable.pack();
Here is a screen shot of the problem it is in the colors table
Can anybody help me with this?