Browse Source

Fixed command summary text overlapping edge in Unity 5.4 beta

master
chrisgregan 9 years ago
parent
commit
7c33917cab
  1. 2
      Assets/Fungus/Flowchart/Editor/CommandListAdaptor.cs

2
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();

Loading…
Cancel
Save