diff --git a/Assets/Fungus/FungusScript/Editor/FungusCommandListAdaptor.cs b/Assets/Fungus/FungusScript/Editor/FungusCommandListAdaptor.cs index 28d0f68e..5712b8c6 100644 --- a/Assets/Fungus/FungusScript/Editor/FungusCommandListAdaptor.cs +++ b/Assets/Fungus/FungusScript/Editor/FungusCommandListAdaptor.cs @@ -163,7 +163,7 @@ namespace Fungus.Script string commandName = commandInfoAttr.CommandName; GUIStyle commandStyle = new GUIStyle(EditorStyles.miniButtonLeft); - float buttonWidth = Mathf.Max(commandStyle.CalcSize(new GUIContent(commandName)).x, 80f); + float buttonWidth = Mathf.Max(commandStyle.CalcSize(new GUIContent(commandName)).x, 100f); float indentWidth = command.indentLevel * indentSize; Rect buttonRect = position;