How to display a long EditorGUILayout.FloatField label?

I just want to see all the text. How?

void OnGUI () 
{
	PlayerPrefs.SetFloat("Controls Screen Height Portion", 
		EditorGUILayout.FloatField("Screen Height Portion", 
			PlayerPrefs.GetFloat("Controls Screen Height Portion"),
			GUILayout.ExpandWidth(false)
		)
	);
	
	PlayerPrefs.SetFloat("Control Button Screen Width Portion", 
		EditorGUILayout.FloatField("Button Screen Width Portion", 
			PlayerPrefs.GetFloat("Control Button Screen Width Portion"),
			GUILayout.ExpandWidth(false)
		)
	);
}

372125--12889--$screen_shot_2010_08_23_at_72910_am_509.png

There’s this function
EditorGUIUtility.LookLikeControls(labelWidth : float = 100, fieldWidth : float = 70)

set wider labelWidth and you’ll be fine. We do this in many places…

Perfect. Thanks!