|
From: <md...@us...> - 2007-08-30 13:04:25
|
Revision: 3753
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3753&view=rev
Author: mdboom
Date: 2007-08-30 06:04:05 -0700 (Thu, 30 Aug 2007)
Log Message:
-----------
Fix bug where mathtext colors were not being set properly.
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/backends/backend_pdf.py
Modified: trunk/matplotlib/lib/matplotlib/backends/backend_pdf.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/backends/backend_pdf.py 2007-08-29 20:39:07 UTC (rev 3752)
+++ trunk/matplotlib/lib/matplotlib/backends/backend_pdf.py 2007-08-30 13:04:05 UTC (rev 3753)
@@ -1348,8 +1348,8 @@
# this complication is avoided, but of course, those fonts can
# not be subsetted.
+ self.check_gc(gc, gc._rgb)
if ismath: return self.draw_mathtext(gc, x, y, s, prop, angle)
- self.check_gc(gc, gc._rgb)
fontsize = prop.get_size_in_points()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|