Merge pull request #1380 from arve0/fix_Blitmanager.remove_artists

FIX: Remove artist from artists, not itself
This commit is contained in:
Josh Warner
2015-02-18 16:41:53 -06:00
+1 -1
View File
@@ -60,7 +60,7 @@ class BlitManager(object):
def remove_artists(self, artists):
for artist in artists:
self.artist.remove(artist)
self.artists.remove(artist)
def on_draw_event(self, event=None):
self.background = self.canvas.copy_from_bbox(self.ax.bbox)