Browse Source

Fixed selected sequence box render order

master
chrisgregan 11 years ago
parent
commit
6a2c17e2b5
  1. 6
      Assets/Fungus/Editor/FungusScript/FungusEditorWindow.cs

6
Assets/Fungus/Editor/FungusScript/FungusEditorWindow.cs

@ -115,6 +115,8 @@ namespace Fungus.Script
DrawConnections(fungusScript, s, true);
}
EndWindows();
if (fungusScript.selectedSequence != null ||
fungusScript.executingSequence != null)
{
@ -134,9 +136,7 @@ namespace Fungus.Script
GLDraw.DrawBox(outlineRect, Color.green, 2);
}
EndWindows();
GUI.EndScrollView();
GUI.EndScrollView();
GUILayout.BeginVertical();
GUILayout.FlexibleSpace();

Loading…
Cancel
Save