File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -975,7 +975,7 @@ def _init_draw(self):
975
975
for f in self .new_frame_seq ():
976
976
for artist in f :
977
977
artist .set_visible (False )
978
- artist .set_animated (True )
978
+ artist .set_animated (self . _blit )
979
979
# Assemble a list of unique axes that need flushing
980
980
if artist .axes .figure not in figs :
981
981
figs .add (artist .axes .figure )
@@ -1095,7 +1095,7 @@ def _init_draw(self):
1095
1095
else :
1096
1096
self ._drawn_artists = self ._init_func ()
1097
1097
for a in self ._drawn_artists :
1098
- a .set_animated (True )
1098
+ a .set_animated (self . _blit )
1099
1099
1100
1100
def _draw_frame (self , framedata ):
1101
1101
# Save the data for potential saving of movies.
@@ -1109,4 +1109,4 @@ def _draw_frame(self, framedata):
1109
1109
# func needs to return a sequence of any artists that were modified.
1110
1110
self ._drawn_artists = self ._func (framedata , * self ._args )
1111
1111
for a in self ._drawn_artists :
1112
- a .set_animated (True )
1112
+ a .set_animated (self . _blit )
You can’t perform that action at this time.
0 commit comments