Revision: 4600
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4600&view=rev
Author:   mdboom
Date:     2007-12-04 12:55:04 -0800 (Tue, 04 Dec 2007)

Log Message:
-----------
Fix inverted x-axis bug.

Modified Paths:
--------------
    branches/transforms/lib/matplotlib/axes.py

Modified: branches/transforms/lib/matplotlib/axes.py
===================================================================
--- branches/transforms/lib/matplotlib/axes.py  2007-12-04 20:53:52 UTC (rev 
4599)
+++ branches/transforms/lib/matplotlib/axes.py  2007-12-04 20:55:04 UTC (rev 
4600)
@@ -1599,7 +1599,7 @@
         if xmin is None: xmin = old_xmin
         if xmax is None: xmax = old_xmax
 
-        xmin, xmax = mtransforms.nonsingular(xmin, xmax)
+        xmin, xmax = mtransforms.nonsingular(xmin, xmax, increasing=False)
         xmin, xmax = self.xaxis.limit_range_for_scale(xmin, xmax)
 
         self.viewLim.intervalx = (xmin, xmax)


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
SF.Net email is sponsored by: The Future of Linux Business White Paper
from Novell.  From the desktop to the data center, Linux is going
mainstream.  Let it simplify your IT future.
http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to