Thanks for testing. I'll make this change in refigure2.
BTW, if you want something else to worry about, here's something:
refigure2 has three printing mechanisms - printing directly through
cairo, printing with a PDF intermediary, and printing via a bitmap. I
suspect you're using the last. For printing, this is fine. But if
you're making PDFs for sharing, it might produce rather large files.
If this worries you (and I'm not saying it should), the two easiest
solutions would be to
1) Use the Cairo mechanism, which will happen automatically if you're
using the GTKCairo backend to matplotlib. (Just make the change to your
matplotlibrc file.)
2) Change the printing resolution for the bitmap mechanism. You can do
this by creating a file named refigurerc in the same directory as your
matplotlibrc file, and adding to it the line
refigure.printdpi: 150
You can play with the number until you reach the sweet spot of size vs.
quality.
But as I said, this isn't something to worry about too much if it isn't
bothering you.
Robert
P.S. I did see your other question, but I haven't had time to think
about it yet.