Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Simple GUI interface enhancements #851

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

Merged
merged 12 commits into from
Jul 1, 2012
Merged
Prev Previous commit
Next Next commit
Improved means of getting figure when fullscreen key is depressed.
  • Loading branch information
pelson committed Jun 24, 2012
commit 74b648913f636565e07e7ad1ad56cbb544fb5e69
7 changes: 3 additions & 4 deletions 7 lib/matplotlib/backend_bases.py
Original file line number Diff line number Diff line change
Expand Up @@ -1346,10 +1346,9 @@ def __init__(self, name, canvas, x, y, button=None, key=None,
self.dblclick = dblclick

def __str__(self):
return ("MPL MouseEvent: xy=(%d,%d) xydata=(%s,%s) button=%d dblclick=%s"
"inaxes=%s" % (self.x, self.y, str(self.xdata), str(self.ydata),
self.button, self.dblclick, self.inaxes)
)
return ("MPL MouseEvent: xy=(%d,%d) xydata=(%s,%s) button=%d " +
"dblclick=%s inaxes=%s") % (self.x, self.y, self.xdata,
self.ydata, self.button, self.dblclick, self.inaxes)


class PickEvent(Event):
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.