8000 Text box widget, take over of PR5375 by fariza · Pull Request #6988 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Text box widget, take over of PR5375 #6988

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 9 commits into from
Sep 3, 2016
Merged
Prev Previous commit
Next Next commit
[Widget/Text] Dont validate the input when clicking outside of the wi…
…dget
  • Loading branch information
Nodraak authored and fariza committed Aug 29, 2016
commit c92af554ce29ff65f9f0410ef8ee1f9d6ef1961a
1 change: 1 addition & 0 deletions lib/matplotlib/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,7 @@ def _click(self, event):
if self.ignore(event):
return
if event.inaxes != self.ax:
self.capturekeystrokes = False
self.stop_typing()
return
if not self.eventson:
Expand Down
0