GridLayout with TwinColSelect

I have a simple case test … I’ve inserted the code below into a Panel:

GridLayout gl = new GridLayout(2, 2);
		
Select select = new Select();
select.addItem();
select.addItem();
		
gl.addComponent(new Label("Label"), 0, 0);
gl.addComponent(select, 1, 0);
		
TwinColSelect tc = new TwinColSelect();

gl.addComponent(tc, 0, 1, 1, 1);
	
addComponent(gl);

if you click on the Selectbox, you see that it goes to the right a little … is that supose to happen or is it some kind of bug?

's
Andre Jarussi