Skip to content

Commit 572fe8f

Browse files
timhoffmMeeseeksDev[bot]
authored and
MeeseeksDev[bot]
committed
Backport PR #15422: FIX: typo in attribute lookup
1 parent e772c1f commit 572fe8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_qt5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ def draw_idle(self):
507507
# accumulate multiple draw requests from event handling.
508508
# TODO: queued signal connection might be safer than singleShot
509509
if not (getattr(self, '_draw_pending', False) or
510-
getattr(self, '._is_drawing', False)):
510+
getattr(self, '_is_drawing', False)):
511511
self._draw_pending = True
512512
QtCore.QTimer.singleShot(0, self._draw_idle)
513513

0 commit comments

Comments
 (0)