We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c94628d commit d1b775dCopy full SHA for d1b775d
python/tskit/drawing.py
@@ -287,7 +287,7 @@ def draw(self):
287
if stroke is not None:
288
# Keep SVG small and clean
289
params = {} if stroke == default_edge_colour else {'stroke': stroke}
290
- lines.add(dwg.line(x, (x[1], y[1]), **params))
+ lines.add(dwg.line(x, (x[0], y[1]), **params))
291
lines.add(dwg.line((x[0], y[1]), y, **params))
292
293
# Experimental stuff to render the mutation labels. Not working very
0 commit comments