Revision: 6608
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6608&view=rev
Author:   mdboom
Date:     2008-12-15 14:16:27 +0000 (Mon, 15 Dec 2008)

Log Message:
-----------
Fix gridlines not moving correctly during pan and zoom

Modified Paths:
--------------
    branches/v0_98_5_maint/CHANGELOG
    branches/v0_98_5_maint/lib/matplotlib/transforms.py

Modified: branches/v0_98_5_maint/CHANGELOG
===================================================================
--- branches/v0_98_5_maint/CHANGELOG    2008-12-15 06:26:18 UTC (rev 6607)
+++ branches/v0_98_5_maint/CHANGELOG    2008-12-15 14:16:27 UTC (rev 6608)
@@ -1,3 +1,5 @@
+2008-12-15 Fix grid lines not moving correctly during pan and zoom - MGD
+
 2008-12-12 Fixed warning in hist() with numpy 1.2 - MM
 
 =================================================================

Modified: branches/v0_98_5_maint/lib/matplotlib/transforms.py
===================================================================
--- branches/v0_98_5_maint/lib/matplotlib/transforms.py 2008-12-15 06:26:18 UTC 
(rev 6607)
+++ branches/v0_98_5_maint/lib/matplotlib/transforms.py 2008-12-15 14:16:27 UTC 
(rev 6608)
@@ -120,8 +120,7 @@
             root = stack.pop()
             # Stop at subtrees that have already been invalidated
             if root._invalid != value or root.pass_through:
-                value |= root._invalid
-                root._invalid = value
+                root._invalid = self.INVALID
                 stack.extend(root._parents.keys())
 
     def set_children(self, *children):


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

------------------------------------------------------------------------------
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to