From 407deb74a910ad1aca21518a2535d45bfc8b2f82 Mon Sep 17 00:00:00 2001 From: ENGworks Dev <42068789+ENGworks-DEV@users.noreply.github.com> Date: Wed, 21 Nov 2018 16:39:46 -0300 Subject: [PATCH] Fixing issue #7 https://github.com/tumcms/TUM.CMS.VPLControl/issues/7 --- src/TUM.CMS.VplControl/Core/Node.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/TUM.CMS.VplControl/Core/Node.cs b/src/TUM.CMS.VplControl/Core/Node.cs index dedae7f..4314839 100644 --- a/src/TUM.CMS.VplControl/Core/Node.cs +++ b/src/TUM.CMS.VplControl/Core/Node.cs @@ -556,8 +556,8 @@ public virtual void DeserializeNetwork(XmlReader xmlReader) var topValue = xmlReader.GetAttribute("TOP").Replace(",", "."); var leftValue = xmlReader.GetAttribute("Left").Replace(",", "."); - topValue = xmlReader.GetAttribute("TOP").Replace(".", ","); - leftValue = xmlReader.GetAttribute("Left").Replace(".", ","); + # topValue = xmlReader.GetAttribute("TOP").Replace(".", ","); + # leftValue = xmlReader.GetAttribute("Left").Replace(".", ","); if (HostCanvas.ImportFlowDirection == HostCanvas.GraphFlowDirection) { @@ -594,4 +594,4 @@ public static Rect GetBoundingBoxOfNodes(List nodes) return new Rect(new Point(minLeft, minTop), new Size(maxLeft - minLeft, maxTop - minTop)); } } -} \ No newline at end of file +}