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.
2 parents d3491dc + 63842c0 commit a7e81efCopy full SHA for a7e81ef
lib/matplotlib/backends/backend_qt.py
@@ -517,7 +517,7 @@ def _draw_idle(self):
517
if not self._draw_pending:
518
return
519
self._draw_pending = False
520
- if self.height() <= 0 or self.width() <= 0:
+ if _isdeleted(self) or self.height() <= 0 or self.width() <= 0:
521
522
try:
523
self.draw()
requirements/testing/all.txt
@@ -6,7 +6,7 @@ coverage!=6.3
6
psutil
7
pytest!=4.6.0,!=5.4.0,!=8.1.0
8
pytest-cov
9
-pytest-rerunfailures
+pytest-rerunfailures!=16.0
10
pytest-timeout
11
pytest-xdist
12
pytest-xvfb
0 commit comments