8000 Fixing osx makefile by fgb · Pull Request #4 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Fixing osx makefile #4

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
wants to merge 15 commits into from
Closed
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
REV: Attend to code review comments
  • Loading branch information
scottza authored and fgb committed Feb 23, 2011
commit 125c33214bb460bc3042ad76acc0e798bc925261
3 changes: 2 additions & 1 deletion lib/matplotlib/figure.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@ def autofmt_xdate(self, bottom=0.2, rotation=30, ha='right'):
if len(self.axes)==1:
# Always operate on the ticklabels if there is a single
# Axes object in the figure.
ax = self.get_axes()[0]
for label in ax.get_xticklabels():
label.set_ha(ha)
label.set_rotation(rotation)
Expand All @@ -329,7 +330,7 @@ def autofmt_xdate(self, bottom=0.2, rotation=30, ha='right'):
label.set_visible(False)
ax.set_xlabel('')

self.subplots_adjust(bottom=bottom)
self.subplots_adjust(bottom=bottom)

def get_children(self):
'get a list of artists contained in the figure'
Expand Down
0