|
From: <Jan...@us...> - 2007-02-23 15:28:20
|
Revision: 556
http://svn.sourceforge.net/magicmap/?rev=556&view=rev
Author: Jan_fride
Date: 2007-02-23 07:27:57 -0800 (Fri, 23 Feb 2007)
Log Message:
-----------
synchronization, this time without new bugs ;-)
Modified Paths:
--------------
trunk/magicmapclient/src/net/sf/magicmap/client/model/location/jung/JungNodePlacer.java
Modified: trunk/magicmapclient/src/net/sf/magicmap/client/model/location/jung/JungNodePlacer.java
===================================================================
--- trunk/magicmapclient/src/net/sf/magicmap/client/model/location/jung/JungNodePlacer.java 2007-02-22 13:16:13 UTC (rev 555)
+++ trunk/magicmapclient/src/net/sf/magicmap/client/model/location/jung/JungNodePlacer.java 2007-02-23 15:27:57 UTC (rev 556)
@@ -314,6 +314,7 @@
* @return
*/
private IMagicEdge addEdge(Vertex v1, Vertex v2){
+ log.info("Adding Edge : " + v1 + " -> " + v2);
if (v1 == v2) return null;
Edge e = v1.findEdge(v2);
if (e != null)
@@ -322,7 +323,7 @@
JungEdge edge = new JungEdge(v1, v2);
this.worker.suspend(); // stopGraph();
addEdge(edge);
- //this.layout.update();
+ this.layout.update();
((SpringLayout) this.worker.getGraphLayout()).update();
this.worker.unsuspend(); // resumeGraph();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|