From 6c7e53356c3174e41610e68bfe27eb0a1411b90f Mon Sep 17 00:00:00 2001 From: Zach Vinless Date: Sun, 22 Jan 2017 15:30:00 -0800 Subject: [PATCH] Fixed connections not highlighting --- Assets/Fungus/Scripts/Editor/FlowchartWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Fungus/Scripts/Editor/FlowchartWindow.cs b/Assets/Fungus/Scripts/Editor/FlowchartWindow.cs index 089423a9..c42edbde 100644 --- a/Assets/Fungus/Scripts/Editor/FlowchartWindow.cs +++ b/Assets/Fungus/Scripts/Editor/FlowchartWindow.cs @@ -1123,7 +1123,7 @@ namespace Fungus.EditorUtils var connectedBlocks = new List(); - bool blockIsSelected = (flowchart.SelectedBlock != block); + bool blockIsSelected = flowchart.SelectedBlock == block; var commandList = block.CommandList; foreach (var command in commandList)