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 fa5cb4d commit 9cec66fCopy full SHA for 9cec66f
lib/matplotlib/collections.py
@@ -1729,6 +1729,7 @@ def get_paths(self):
1729
def set_paths(self):
1730
self._paths = self.convert_mesh_to_paths(
1731
self._meshWidth, self._meshHeight, self._coordinates)
1732
+ self.stale = True
1733
1734
def get_datalim(self, transData):
1735
return (self.get_transform() - transData).transform_bbox(self._bbox)
@@ -1852,6 +1853,7 @@ def draw(self, renderer):
1852
1853
self._antialiased, self.get_edgecolors())
1854
gc.restore()
1855
renderer.close_group(self.__class__.__name__)
1856
+ self.stale = False
1857
1858
1859
patchstr = artist.kwdoc(Collection)
0 commit comments