forked from matplotlib/matplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
TextBox: Added set_val method for convenient scripted setting and updating. #1
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
smithsp
wants to merge
1,800
commits into
HastingsGreer:text-box-widget
from
smithsp:text-box-widget
Closed
TextBox: Added set_val method for convenient scripted setting and updating. #1
smithsp
wants to merge
1,800
commits into
HastingsGreer:text-box-widget
from
smithsp:text-box-widget
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@tacaswell Can you tell why the travis build would have failed for this branch/pull request, but not for matplotlib#5375? |
There may be fixes on the master branch which are not included on this branch. I can not tell much else with out digging deeper. |
@tacaswell Thanks for taking a look. |
These are fixes for all issues found in axes_grid, color, and event_handling sections on the examples page. axisartist/demo_curvelinear_grid.py - Set linewidth=2.0 and grid zorder=0 so the plotted lines actually visible event_handling/keypress_demo.py - added usage instruction as axes title event_handling/lasso_demo.py - added usage instruction as axes title event_handling/looking_glass.py - added usage instruction as axes title event_handling/resample.py - removed gtk and hardcoded wave file dependencies and just created a sample signal within the script event_handling/trifinder_event_demo.py - zip(l1,l2) call changed to list(zip(l1,l2)) to be python3 compatible event_handling/viewlims.py - The focus box that is supposed to appear in the left axes when user zooms in the right axes wasn't visible. Set linewidth=1.0
DOC: 2.0 Examples fixes See matplotlib#6762
DOC: 2.0 Examples fixes See matplotlib#6762
`annotate(..., arrowprops={})` now uses an arrow with the default arrow properties, rather than no arrow. Note that this matches the docstring of `annotate`, which indicates that "arrowprops, if not None, is a dictionary of line properties (see matplotlib.lines.Line2D) for the arrow that connects annotation to the point." Comes down to checking for `None` instead of falsiness of `arrowprops`.
DOC: Added contribute information to readme
…-check better freetype version checking
…-check better freetype version checking
Apparently unused and with no effect ever since they were added.
The official xkcd font https://github.com/ipython/xkcd-font was missing from the list of what is looked for when the user selects xkcd mode. Since it is the "official" font, it has been added to the top of the list.
…nect-dragging-callbacks FIX: Don't forget to disconnect callbacks for dragging.
While nose is pretty happy with old ones, this has to be done to conform with other tests and default pytest search pattern.
Rename tests in `test_mlab.py`
ENH: Add xkcd font as one of the options in xkcd style
ENH: Add xkcd font as one of the options in xkcd style
API: Deprecate `{get,set}_cursorprops`.
…ons-picker MNT: Don't warn in Collections.contains if picker is not numlike.
…tive-invalid-log FIX: Catch invalid interactive switch to log scale.
ENH: PGF Backend: Support interpolation='none'
…ed when text changes or text is submitted
…to aid readability
…and text from getting misaligned
8370ddd
to
257b776
Compare
I am closing this because it got merged into the main matplotlib repo through a different pull request. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
@QuadmasterXLII
Thanks for adding the TextBox as a Pull Request to matplotlib (matplotlib#5375). I took what you added, and added a
set_val
method. Let me know if I need to change anything for you to accept this into your branch and thus to go into matplotlib#5375.@smithsp