Skip to content

Commit eda29e1

Browse files
authored
Merge pull request #15423 from meeseeksmachine/auto-backport-of-pr-15422-on-v2.2.x
Backport PR #15422 on branch v2.2.x (FIX: typo in attribute lookup)
2 parents e772c1f + 572fe8f commit eda29e1

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
@@ -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)