proper translate vertex (cf. 4d985afc0565);
authorwenzelm
Tue, 06 Jan 2015 16:43:17 +0100
changeset 59304 848e27e4ac37
parent 59303 15cd9bcd6ddb
child 59305 b5e33012180e
proper translate vertex (cf. 4d985afc0565);
src/Tools/Graphview/layout.scala
--- a/src/Tools/Graphview/layout.scala	Tue Jan 06 16:41:31 2015 +0100
+++ b/src/Tools/Graphview/layout.scala	Tue Jan 06 16:43:17 2015 +0100
@@ -324,7 +324,7 @@
   {
     if ((dx == 0.0 && dy == 0.0) || !output_graph.defined(v)) this
     else {
-      val output_graph1 = output_graph.map_node(v, p => Layout.Point(p.x + dy, p.y + dy))
+      val output_graph1 = output_graph.map_node(v, p => Layout.Point(p.x + dx, p.y + dy))
       new Layout(metrics, input_graph, output_graph1)
     }
   }