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.

------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to