Skip to content
Snippets Groups Projects
Commit 73285655 authored by Peter Wägemann's avatar Peter Wägemann
Browse files

Omit minlen parameter in dot graphs, since it causes xdot to crash (without error message)

parent aab41176
Branches
Tags
No related merge requests found
...@@ -215,7 +215,10 @@ class Edge: ...@@ -215,7 +215,10 @@ class Edge:
def dump_as_dot(self, within={}): def dump_as_dot(self, within={}):
ret = "" ret = ""
attrs = { attrs = {
"minlen": 3, # omit minlen parameter, since it causes dot to crash (without an
# error message) for some larger graphs. The parameter would cause
# graphs to look nicer due to the minimum distance between nodes.
# "minlen": 3,
"label": '"' + str(self.label) + '"', "label": '"' + str(self.label) + '"',
"color":self.color, "color":self.color,
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment