NodeEditorWinforms
NodeEditorWinforms copied to clipboard
Update NodesControl.cs - ExportToXml bug fix
var xmlConn = (XmlElement)nodes.AppendChild(xml.CreateElement("Connection")); update to var xmlConn = (XmlElement)connections.AppendChild(xml.CreateElement("Connection"));
At the moment the xml in output is not formatted in the right way.