Browse Source

Stopped Block inspector always activating on startup

master
chrisgregan 10 years ago
parent
commit
46381fe1e3
  1. 3
      Assets/Fungus/Flowchart/Editor/FlowchartWindow.cs

3
Assets/Fungus/Flowchart/Editor/FlowchartWindow.cs

@ -61,7 +61,8 @@ namespace Fungus
return;
}
if (flowchart.selectedBlock != null)
if (Selection.activeGameObject == null &&
flowchart.selectedBlock != null)
{
if (blockInspector == null)
{

Loading…
Cancel
Save