diff --git a/svg-to-dia.py b/svg-to-dia.py index 64d9738..9b3297e 100755 --- a/svg-to-dia.py +++ b/svg-to-dia.py @@ -58,6 +58,9 @@ def build_shape(svg_path): (0, width), (height // 2, 0), (height, 0), + (width // 2, height), + (width, height // 2), + (width, height), ] for x, y in points: ET.SubElement(xconns, 'point', attrib={'x': str(x), 'y': str(y)})