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.
1 parent ab3c696 commit 5ca19cdCopy full SHA for 5ca19cd
lib/matplotlib/backends/_backend_tk.py
@@ -96,7 +96,7 @@ def _on_timer(self):
96
# if _timer is None, this means that _timer_stop has been called; so
97
# don't recreate the timer in that case.
98
if not self._single and self._timer:
99
- if self._interval:
+ if self._interval > 0:
100
self._timer = self.parent.after(self._interval, self._on_timer)
101
else:
102
# Edge case: Tcl after 0 *prepends* events to the queue
0 commit comments