8000 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
spelling
  • Loading branch information
Matt Terry committed Jun 10, 2013
commit 8f753d013178a2fb5696762f268ef4378ef0ae8b
2 changes: 1 addition & 1 deletion lib/matplotlib/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -1747,7 +1747,7 @@ def disconnect(self, cid):

@property
def cursor(self):
# macosx does not provide render objects until the first fram is done.
# macosx does not provide render objects until the first frame is done.
# Lazily generating the cursor avoids issues
if self._cursor is None:
x, y = self._get_cursor_endpoints() # needs a renderer
Expand Down
0