Browse Source

Merge pull request #455 from snozbot/command-summary-overlap

Fixed command summary text overlapping edge in Unity 5.4 beta
master
Chris Gregan 9 years ago
parent
commit
180ada0c7c
  1. 2
      Assets/Fungus/Flowchart/Editor/CommandListAdaptor.cs

2
Assets/Fungus/Flowchart/Editor/CommandListAdaptor.cs

@ -432,7 +432,7 @@ namespace Fungus
else else
{ {
summaryRect.x += commandNameWidth + 5; summaryRect.x += commandNameWidth + 5;
summaryRect.width -= commandNameWidth; summaryRect.width -= commandNameWidth + 5;
} }
GUIStyle summaryStyle = new GUIStyle(); GUIStyle summaryStyle = new GUIStyle();

Loading…
Cancel
Save