From: <mme...@us...> - 2008-06-28 01:11:00
|
Revision: 5696 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5696&view=rev Author: mmetz_bn Date: 2008-06-27 18:10:58 -0700 (Fri, 27 Jun 2008) Log Message: ----------- Fixed tick positioning bug Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/lib/matplotlib/text.py Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2008-06-27 18:54:51 UTC (rev 5695) +++ trunk/matplotlib/CHANGELOG 2008-06-28 01:10:58 UTC (rev 5696) @@ -1,3 +1,5 @@ +2008-06-27 Fixed tick positioning bug - MM + 2008-06-27 Fix dashed text bug where text was at the wrong end of the dash - MGD Modified: trunk/matplotlib/lib/matplotlib/text.py =================================================================== --- trunk/matplotlib/lib/matplotlib/text.py 2008-06-27 18:54:51 UTC (rev 5695) +++ trunk/matplotlib/lib/matplotlib/text.py 2008-06-28 01:10:58 UTC (rev 5696) @@ -939,7 +939,8 @@ ACCEPTS: float """ - self._dashx = float(x) + self._x = float(x) + self._dashx = self._x def set_y(self, y): """ @@ -947,7 +948,8 @@ ACCEPTS: float """ - self._dashy = float(y) + self._y = float(y) + self._dashy = self._y def set_transform(self, t): """ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |