From: <ef...@us...> - 2008-02-03 21:38:50
|
Revision: 4935 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4935&view=rev Author: efiring Date: 2008-02-03 13:38:20 -0800 (Sun, 03 Feb 2008) Log Message: ----------- Fixed right-hand y tick label positioning bug reported by Darren Dale Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/axes.py Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2008-02-03 21:26:42 UTC (rev 4934) +++ trunk/matplotlib/lib/matplotlib/axes.py 2008-02-03 21:38:20 UTC (rev 4935) @@ -687,7 +687,7 @@ need to place axis elements in different locations. """ return (self._yaxis_transform + - mtransforms.ScaledTranslation(-1 * pad_points / 72.0, 0, + mtransforms.ScaledTranslation(pad_points / 72.0, 0, self.figure.dpi_scale_trans), "center", "left") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |