# HG changeset patch # User Daniel O'Connor # Date 1460502834 -34200 # Node ID 43b5d8d62df62d38e1b7e1fc4614c17a9055935c # Parent 5f4c21bb5140e72506a9a15507d0f140e233d20c Just stroke the note names to make things faster. diff -r 5f4c21bb5140 -r 43b5d8d62df6 musiccutter.py --- a/musiccutter.py Tue Apr 12 21:54:30 2016 +0930 +++ b/musiccutter.py Wed Apr 13 08:43:54 2016 +0930 @@ -111,6 +111,7 @@ pdf.line(0, ofs, self.pagewidth * mm, ofs) # Note name tobj = pdf.beginText() + tobj.setTextRenderMode(1) tobj.setTextOrigin(0 * mm, ofs + 1 * mm) tobj.setFont(self.fontname, self.fontsize) tobj.setFillColor(ENGRAVE_COLOUR)