|
From: <lee...@us...> - 2009-10-16 04:38:44
|
Revision: 7888
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7888&view=rev
Author: leejjoon
Date: 2009-10-16 04:38:36 +0000 (Fri, 16 Oct 2009)
Log Message:
-----------
Merged revisions 7887 via svnmerge from
https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_99_maint
........
r7887 | leejjoon | 2009-10-16 00:35:20 -0400 (Fri, 16 Oct 2009) | 1 line
fix Text.get_prop_tup omitting _rotation_mode. patch by Stan West
........
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/text.py
Property Changed:
----------------
trunk/matplotlib/
Property changes on: trunk/matplotlib
___________________________________________________________________
Modified: svnmerge-integrated
- /branches/mathtex:1-7263 /branches/v0_99_maint:1-7884
+ /branches/mathtex:1-7263 /branches/v0_99_maint:1-7887
Modified: trunk/matplotlib/lib/matplotlib/text.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/text.py 2009-10-16 04:35:20 UTC (rev 7887)
+++ trunk/matplotlib/lib/matplotlib/text.py 2009-10-16 04:38:36 UTC (rev 7888)
@@ -674,7 +674,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.
|