diff --git a/Assets/Fungus/Narrative/Editor/SayEditor.cs b/Assets/Fungus/Narrative/Editor/SayEditor.cs index 75580ac3..c0d5c764 100644 --- a/Assets/Fungus/Narrative/Editor/SayEditor.cs +++ b/Assets/Fungus/Narrative/Editor/SayEditor.cs @@ -121,7 +121,11 @@ namespace Fungus new GUIContent("Character", "Character that is speaking"), new GUIContent(""), Character.activeCharacters); + + EditorGUILayout.BeginHorizontal(); + EditorGUILayout.PrefixLabel(" "); characterProp.objectReferenceValue = (Character) EditorGUILayout.ObjectField(characterProp.objectReferenceValue, typeof(Character), true); + EditorGUILayout.EndHorizontal(); Say t = target as Say;