From 7c33917cabf01296e77a61da2c6da76825b04363 Mon Sep 17 00:00:00 2001 From: chrisgregan Date: Fri, 15 Apr 2016 15:58:43 +0100 Subject: [PATCH] Fixed command summary text overlapping edge in Unity 5.4 beta --- Assets/Fungus/Flowchart/Editor/CommandListAdaptor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Fungus/Flowchart/Editor/CommandListAdaptor.cs b/Assets/Fungus/Flowchart/Editor/CommandListAdaptor.cs index b5837560..86469212 100644 --- a/Assets/Fungus/Flowchart/Editor/CommandListAdaptor.cs +++ b/Assets/Fungus/Flowchart/Editor/CommandListAdaptor.cs @@ -432,7 +432,7 @@ namespace Fungus else { summaryRect.x += commandNameWidth + 5; - summaryRect.width -= commandNameWidth; + summaryRect.width -= commandNameWidth + 5; } GUIStyle summaryStyle = new GUIStyle();