Author: clopes
Date: 2013-01-23 15:24:40 -0800 (Wed, 23 Jan 2013)
New Revision: 31073

Modified:
   
core3/impl/trunk/io-impl/impl/src/main/java/org/cytoscape/io/internal/read/gml/GMLNetworkReader.java
Log:
Refs #1643 : Also fixed importing node line width from GML.

Modified: 
core3/impl/trunk/io-impl/impl/src/main/java/org/cytoscape/io/internal/read/gml/GMLNetworkReader.java
===================================================================
--- 
core3/impl/trunk/io-impl/impl/src/main/java/org/cytoscape/io/internal/read/gml/GMLNetworkReader.java
        2013-01-23 21:59:46 UTC (rev 31072)
+++ 
core3/impl/trunk/io-impl/impl/src/main/java/org/cytoscape/io/internal/read/gml/GMLNetworkReader.java
        2013-01-23 23:24:40 UTC (rev 31073)
@@ -620,6 +620,10 @@
                for (KeyValue keyVal : list) {
                        String key = keyVal.key;
                        Object value = keyVal.value;
+                       
+                       if (key.equals(OUTLINE_WIDTH))
+                               key = WIDTH;
+                       
                        VisualProperty<?> vp = lexicon.lookup(CyNode.class, 
key);
 
                        if (vp != null) {

-- 
You received this message because you are subscribed to the Google Groups 
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
Visit this group at http://groups.google.com/group/cytoscape-cvs?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to