The component selector has no scroll bars, I have many fonts in my project and can't select all of them
I added this locally in ComponentSelector.cs
Vector2 scrollPos;
/// <summary>
/// Draw the custom wizard.
/// </summary>
void OnGUI ()
{
NGUIEditorTools.SetLabelWidth(80f);
GUILayout.Label(mTitle, "LODLevelNotifyText");
GUILayout.Space(6f);
scrollPos = GUILayout.BeginScrollView (scrollPos);
// ...
GUILayout.EndScrollView ();
}
that might save you a few moments looking up the syntax