# HG changeset patch # User Daniel O'Connor # Date 1459601876 -37800 # Node ID e9760224e99240d8ffb9f959f574c968679a8531 # Parent f07a997e9f79153996476e17da584493d50f347c Fill should be none. diff -r f07a997e9f79 -r e9760224e992 musiccutter.py --- a/musiccutter.py Sat Apr 02 23:26:38 2016 +1030 +++ b/musiccutter.py Sat Apr 02 23:27:56 2016 +1030 @@ -131,7 +131,7 @@ def _emitnote(svg, x, y, w, h): svg.add(svgwrite.shapes.Rect(insert = ('%.3fcm' % (x), '%.3fcm' % (y)), size = ('%.3fcm' % (w), '%.3fcm' % (h)), - stroke = 'red', stroke_width = '1px', fill = 'red')) + stroke = 'red', stroke_width = '1px', fill = 'none')) if __name__ == '__main__': main()