Revision: 6465
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6465&view=rev
Author:   mdboom
Date:     2008-12-01 19:35:39 +0000 (Mon, 01 Dec 2008)

Log Message:
-----------
Non-affine transformation invalidation wasn't propagating correctly.

Modified Paths:
--------------
    trunk/matplotlib/lib/matplotlib/transforms.py

Modified: trunk/matplotlib/lib/matplotlib/transforms.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/transforms.py       2008-12-01 19:07:08 UTC 
(rev 6464)
+++ trunk/matplotlib/lib/matplotlib/transforms.py       2008-12-01 19:35:39 UTC 
(rev 6465)
@@ -115,12 +115,12 @@
             return
 
         # Invalidate all ancestors of self using pseudo-recursion.
-        parent = None
         stack = [self]
         while len(stack):
             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
                 stack.extend(root._parents.keys())
 


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

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-checkins mailing list
Matplotlib-checkins@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to