8000 Matplotlib blitting in Jupyter Notebooks (issue #4288) by mbewley · Pull Request #9240 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Matplotlib blitting in Jupyter Notebooks (issue #4288) #9240

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
MNT: do not add deprecated helper method
Version on base-class is identical
  • Loading branch information
tacaswell committed Feb 10, 2018
commit 8322e22072f44b9de577bd3b21ced38d565365ac
3 changes: 0 additions & 3 deletions lib/matplotlib/backends/backend_webagg_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,9 +406,6 @@ def set_cursor(self, cursor):
self.canvas.send_event("cursor", cursor=cursor)
self.cursor = cursor

def dynamic_update(self):
self.canvas.draw_idle()

def draw_rubberband(self, event, x0, y0, x1, y1):
self.canvas.send_event(
"rubberband", x0=x0, y0=y0, x1=x1, y1=y1)
Expand Down
0