From: <lee...@us...> - 2009-10-25 19:34:04
|
Revision: 7907 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7907&view=rev Author: leejjoon Date: 2009-10-25 19:33:49 +0000 (Sun, 25 Oct 2009) Log Message: ----------- Merged revisions 7906 via svnmerge from https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_99_maint ........ r7906 | leejjoon | 2009-10-25 15:30:43 -0400 (Sun, 25 Oct 2009) | 2 lines axes_divider.py : fix a bug that axes has a wrong size when pack_start is True. ........ Modified Paths: -------------- trunk/matplotlib/lib/mpl_toolkits/axes_grid/axes_divider.py Property Changed: ---------------- trunk/matplotlib/ Property changes on: trunk/matplotlib ___________________________________________________________________ Modified: svnmerge-integrated - /branches/mathtex:1-7263 /branches/v0_99_maint:1-7903 + /branches/mathtex:1-7263 /branches/v0_99_maint:1-7906 Modified: trunk/matplotlib/lib/mpl_toolkits/axes_grid/axes_divider.py =================================================================== --- trunk/matplotlib/lib/mpl_toolkits/axes_grid/axes_divider.py 2009-10-25 19:30:43 UTC (rev 7906) +++ trunk/matplotlib/lib/mpl_toolkits/axes_grid/axes_divider.py 2009-10-25 19:33:49 UTC (rev 7907) @@ -441,7 +441,7 @@ fraction_ref=self._xref) if pack_start: - self._horizontal.insert(0, pad) + self._horizontal.insert(0, size) self._xrefindex += 1 locator = self.new_locator(nx=0, ny=0) else: @@ -489,7 +489,7 @@ fraction_ref=self._yref) if pack_start: - self._vertical.insert(0, pad) + self._vertical.insert(0, size) self._yrefindex += 1 locator = self.new_locator(nx=0, ny=0) else: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |