From: <jd...@us...> - 2008-06-11 15:31:23
|
Revision: 5470 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5470&view=rev Author: jdh2358 Date: 2008-06-11 08:31:21 -0700 (Wed, 11 Jun 2008) Log Message: ----------- fixed a text layout bug where layout was cached between renderers Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/text.py Modified: trunk/matplotlib/lib/matplotlib/text.py =================================================================== --- trunk/matplotlib/lib/matplotlib/text.py 2008-06-11 12:37:21 UTC (rev 5469) +++ trunk/matplotlib/lib/matplotlib/text.py 2008-06-11 15:31:21 UTC (rev 5470) @@ -394,7 +394,7 @@ return (x, y, self._text, self._color, self._verticalalignment, self._horizontalalignment, hash(self._fontproperties), self._rotation, - self._renderer.dpi + self._renderer.dpi, id(self._renderer) ) def get_text(self): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |