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

Skip to content

Patch issue 6035 rebase #6504

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 12 commits into from
May 30, 2016
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
Next Next commit
Docstring fix
  • Loading branch information
afvincent authored and jenshnielsen committed May 30, 2016
commit 95d1fb0bf0ea7543ccbe2ae2d9b09ffeecc54a76
4 changes: 2 additions & 2 deletions lib/matplotlib/patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -4063,7 +4063,7 @@ def __init__(self, posA=None, posB=None,
def set_dpi_cor(self, dpi_cor):
"""
dpi_cor is currently used for linewidth-related things and
shrink factor. Mutation scale is not affected by this.
shrink factor. Mutation scale *is now* affected by this.
"""

self._dpi_cor = dpi_cor
Expand All @@ -4072,7 +4072,7 @@ def set_dpi_cor(self, dpi_cor):
def get_dpi_cor(self):
"""
dpi_cor is currently used for linewidth-related things and
shrink factor. Mutation scale is not affected by this.
shrink factor. Mutation scale *is now* affected by this.
"""

return self._dpi_cor
Expand Down