10000
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 42b40b8 commit 4cb15efCopy full SHA for 4cb15ef
lib/matplotlib/animation.py
@@ -1204,11 +1204,11 @@ def _init_draw(self):
1204
for artist in f:
1205
artist.set_visible(False)
1206
artist.set_animated(self._blit)
1207
- # Assemble a list of unique axes that need flushing
+ # Assemble a list of unique figures that need flushing
1208
if artist.axes.figure not in figs:
1209
figs.add(artist.axes.figure)
1210
1211
- # Flush the needed axes
+ # Flush the needed figures
1212
for fig in figs:
1213
fig.canvas.draw_idle()
1214
0 commit comments