From aa5b91f2d57920b0f89bef4a61429b078aea8e53 Mon Sep 17 00:00:00 2001 From: shalliwell Date: Thu, 16 Apr 2020 17:23:15 +1000 Subject: [PATCH] Correct Pro Skin 2019.3 Thx to DesperateHouseDev --- Assets/Fungus/Scripts/Editor/CommandListAdaptor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Fungus/Scripts/Editor/CommandListAdaptor.cs b/Assets/Fungus/Scripts/Editor/CommandListAdaptor.cs index 17de662f..5c0a7f5d 100644 --- a/Assets/Fungus/Scripts/Editor/CommandListAdaptor.cs +++ b/Assets/Fungus/Scripts/Editor/CommandListAdaptor.cs @@ -24,7 +24,7 @@ namespace Fungus.EditorUtils if (commandLabelStyle == null) { - commandLabelStyle = new GUIStyle(GUI.skin.box); + commandLabelStyle = new GUIStyle(GUI.skin.label); commandLabelStyle.normal.background = FungusEditorResources.CommandBackground; commandLabelStyle.normal.textColor = Color.black; int borderSize = 5;