Changeset - 362652e72e29
[Not reviewed]
default
0 1 0
Mads Kiilerich - 11 years ago 2014-09-08 13:38:56
madski@unity3d.com
graph: don't draw edges to roots as "dead ends"

Roots and dead ends both don't have outgoing edges. The difference is that
roots will have the dot of the line - dead ends will not.
1 file changed with 2 insertions and 0 deletions:
0 comments (0 inline, 0 general)
kallithea/public/js/graph.js
Show inline comments
 
@@ -118,6 +118,8 @@ function BranchRenderer(canvas_id, conte
 
							break;
 
						}
 
					}
 
					if (nextdata[0][0] == end) // this is a root - not a dead end
 
						dead_end = false;
 
				}
 

	
 
				if (dead_end) {
0 comments (0 inline, 0 general)