10000 Added a TextBox widget by keflavich · Pull Request #1983 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Added a TextBox widget #1983

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 26 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
spell _mouse_activate correctly
  • Loading branch information
Matt Terry committed Jun 4, 2013
commit c11973c10f91f06763ec5cd00709702bf5ac4dfa
2 changes: 1 addition & 1 deletion lib/matplotlib/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -1711,7 +1711,7 @@ def __init__(self, ax, s='', enter_callback=None, **text_kwargs):
self.old_callbacks = {}

self.redraw()
self.connect_event('button_press_event', self.mouse_activate)
self.connect_event('button_press_event', self._mouse_activate)

@property
def cursor(self):
Expand Down
0