8000 FIX: qt recursive draw by tacaswell · Pull Request #9199 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

FIX: qt recursive draw #9199

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 5 commits into from
Sep 26, 2017
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
STY: pep8 in docstrings
  • Loading branch information
tacaswell committed Sep 22, 2017
commit a097c6f0de9caae97f173a2814ca1ffb813e4331
6 changes: 3 additions & 3 deletions lib/matplotlib/figure.py
Original file line number Diff line number Diff line change
Expand Up @@ -708,14 +708,14 @@ def set_size_inches(self, w, h=None, forward=True):

Usage ::

fig.set_size_inches(w,h) # OR
fig.set_size_inches((w,h))
fig.set_size_inches(w, h) # OR
fig.set_size_inches((w, h))

optional kwarg *forward=True* will cause the canvas size to be
automatically updated; e.g., you can resize the figure window
from the shell

ACCEPTS: a w,h tuple with w,h in inches
ACCEPTS: a w, h tuple with w, h in inches

See Also
--------
Expand Down
0