Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 684c2e7 commit 5e84fd9Copy full SHA for 5e84fd9
2 files changed
CHANGELOG
@@ -1,3 +1,5 @@
1
+2008-12-15 Fix grid lines not moving correctly during pan and zoom - MGD
2
+
3
2008-12-12 Fixed warning in hist() with numpy 1.2 - MM
4
5
=================================================================
lib/matplotlib/transforms.py
@@ -120,8 +120,7 @@ def invalidate(self):
120
root = stack.pop()
121
# Stop at subtrees that have already been invalidated
122
if root._invalid != value or root.pass_through:
123
- value |= root._invalid
124
- root._invalid = value
+ root._invalid = self.INVALID
125
stack.extend(root._parents.keys())
126
127
def set_children(self, *children):
0 commit comments