Browse Source

Merge pull request #729 from stevehalliwell/VaraibleEditorPopupNestingBug

VariableEditor popup name and key concat no longer has spaces, allows…
master
Chris Gregan 6 years ago committed by GitHub
parent
commit
04dae8813c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Assets/Fungus/Scripts/Editor/VariableEditor.cs

2
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++;

Loading…
Cancel
Save