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
actually inherit from AxesWidget
  • Loading branch information
Matt Terry committed Jun 4, 2013
commit dc4b04c9486985c9301fb3894bdd8938414c2d26
2 changes: 1 addition & 1 deletion lib/matplotlib/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -1663,7 +1663,7 @@ def onmove(self, event):
self.canvas.draw_idle()


class TextBox(Widget):
class TextBox(AxesWidget):
def __init__(self, ax, s='', horizontalalignment='left',
enter_callback=None, fontsize=12):
"""
Expand Down
0