From 77fff64e244257b9d3c3db969862a90a232d1f86 Mon Sep 17 00:00:00 2001 From: desktop-maesty/steve Date: Wed, 9 Jan 2019 20:19:28 +1000 Subject: [PATCH] VariableEditor popup name and key concat no longer has spaces, allows the PopUp to correctly nest items with the same parent --- Assets/Fungus/Scripts/Editor/VariableEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Fungus/Scripts/Editor/VariableEditor.cs b/Assets/Fungus/Scripts/Editor/VariableEditor.cs index ee04006b..26918064 100644 --- a/Assets/Fungus/Scripts/Editor/VariableEditor.cs +++ b/Assets/Fungus/Scripts/Editor/VariableEditor.cs @@ -107,7 +107,7 @@ namespace Fungus.EditorUtils } } - variableKeys.Add(fs.name + " / " + v.Key); + variableKeys.Add(fs.name + "/" + v.Key); variableObjects.Add(v); index++;