Skip to content

Commit 5102af3

Browse files
authored
Merge pull request #15424 from meeseeksmachine/auto-backport-of-pr-15422-on-v3.1.x
Backport PR #15422 on branch v3.1.x (FIX: typo in attribute lookup)
2 parents c053599 + b343892 commit 5102af3

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
@@ -493,7 +493,7 @@ def draw_idle(self):
493493
# accumulate multiple draw requests from event handling.
494494
# TODO: queued signal connection might be safer than singleShot
495495
if not (getattr(self, '_draw_pending', False) or
496-
getattr(self, '._is_drawing', False)):
496+
getattr(self, '_is_drawing', False)):
497497
self._draw_pending = True
498498
QtCore.QTimer.singleShot(0, self._draw_idle)
499499

0 commit comments

Comments
 (0)