Thanks to visit codestin.com
Credit goes to github.com

Skip to content

ENH: property if DrawingArea clips children #4473

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 2 commits into from
Jul 16, 2015
Merged
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
DOC: added docstring
  • Loading branch information
tacaswell committed Jul 16, 2015
commit 37b55b9253430ec0682a655ab1d311b9522f6f2b
4 changes: 4 additions & 0 deletions lib/matplotlib/offsetbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,10 @@ def __init__(self, width, height, xdescent=0.,

@property
def clip_children(self):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs docstring

"""
If the children of this DrawingArea should be clipped
by DrawingArea bounding box.
"""
return self._clip_children

@clip_children.setter
Expand Down