How to set minimum height for EditorGUILayout scroll view?

Hi guys

I’m using a scroll view to present a List of items in the inspector. Unfortunately this is easily reduced to a couple lines tall when there are multiple components being displayed in the inspector:

alt text

As you can see, this makes it very uncomfortable for dealing with large quantities of data.

Is there any way I can set the minimum height for the scroll view?

Thanks,

Ves

Well, for anyone who comes across this in the future, my solution was:

EditorGUILayout.BeginVertical(GUILayout.MinHeight(128.0f));

// Scrollview, other GUI widgets, etc

EditorGUILayout.EndVertical();