|
From: <lee...@us...> - 2009-10-16 04:35:27
|
Revision: 7887
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7887&view=rev
Author: leejjoon
Date: 2009-10-16 04:35:20 +0000 (Fri, 16 Oct 2009)
Log Message:
-----------
fix Text.get_prop_tup omitting _rotation_mode. patch by Stan West
Modified Paths:
--------------
branches/v0_99_maint/lib/matplotlib/text.py
Modified: branches/v0_99_maint/lib/matplotlib/text.py
===================================================================
--- branches/v0_99_maint/lib/matplotlib/text.py 2009-10-16 02:11:14 UTC (rev 7886)
+++ branches/v0_99_maint/lib/matplotlib/text.py 2009-10-16 04:35:20 UTC (rev 7887)
@@ -664,7 +664,8 @@
x, y = self.get_position()
return (x, y, self.get_text(), self._color,
self._verticalalignment, self._horizontalalignment,
- hash(self._fontproperties), self._rotation,
+ hash(self._fontproperties),
+ self._rotation, self._rotation_mode,
self.figure.dpi, id(self._renderer),
)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|