From: <md...@us...> - 2008-07-10 14:13:11
|
Revision: 5731 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5731&view=rev Author: mdboom Date: 2008-07-10 07:13:07 -0700 (Thu, 10 Jul 2008) Log Message: ----------- [ 2013963 ] update_datalim_bounds in Axes not works Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/lib/matplotlib/axes.py Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2008-07-10 14:07:00 UTC (rev 5730) +++ trunk/matplotlib/CHANGELOG 2008-07-10 14:13:07 UTC (rev 5731) @@ -1,3 +1,5 @@ +2008-07-10 Bugfix: [ 2013963 ] update_datalim_bounds in Axes not works - MGD + 2008-07-10 Bugfix: [ 2014183 ] multiple imshow() causes gray edges - MGD 2008-07-09 Fix rectangular axes patch on polar plots bug - MGD Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2008-07-10 14:07:00 UTC (rev 5730) +++ trunk/matplotlib/lib/matplotlib/axes.py 2008-07-10 14:13:07 UTC (rev 5731) @@ -1394,7 +1394,7 @@ Update the datalim to include the given :class:`~matplotlib.transforms.Bbox` *bounds* ''' - self.dataLim.set(Bbox.union([self.dataLim, bounds])) + self.dataLim.set(mtransforms.Bbox.union([self.dataLim, bounds])) def _process_unit_info(self, xdata=None, ydata=None, kwargs=None): 'look for unit *kwargs* and update the axis instances as necessary' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |