From: <md...@us...> - 2007-12-12 14:52:52
|
Revision: 4707 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4707&view=rev Author: mdboom Date: 2007-12-12 06:52:01 -0800 (Wed, 12 Dec 2007) Log Message: ----------- Support fontconfig syntax in Text constructor. Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/text.py Modified: trunk/matplotlib/lib/matplotlib/text.py =================================================================== --- trunk/matplotlib/lib/matplotlib/text.py 2007-12-12 14:08:15 UTC (rev 4706) +++ trunk/matplotlib/lib/matplotlib/text.py 2007-12-12 14:52:01 UTC (rev 4707) @@ -675,6 +675,8 @@ ACCEPTS: a matplotlib.font_manager.FontProperties instance """ + if is_string_like(fp): + fp = FontProperties(fp) self._fontproperties = fp artist.kwdocd['Text'] = artist.kwdoc(Text) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |