Skip to content

Commit 7e44b95

Browse files
timhoffmMeeseeksDev[bot]
authored and
MeeseeksDev[bot]
committed
Backport PR #15422: FIX: typo in attribute lookup
1 parent 4616897 commit 7e44b95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_qt5.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ def draw_idle(self):
477477
# accumulate multiple draw requests from event handling.
478478
# TODO: queued signal connection might be safer than singleShot
479479
if not (getattr(self, '_draw_pending', False) or
480-
getattr(self, '._is_drawing', False)):
480+
getattr(self, '_is_drawing', False)):
481481
self._draw_pending = True
482482
QtCore.QTimer.singleShot(0, self._draw_idle)
483483

0 commit comments

Comments
 (0)