Skip to content

Commit

Permalink
Fix plot directive autolayout label clipping.
Browse files Browse the repository at this point in the history
  • Loading branch information
bjlittle committed Jun 12, 2014
1 parent 07b880a commit c34bcb4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
############ plot directive ##############

plot_html_show_formats = False
plot_rcparams = {'figure.autolayout': True}
#plot_rcparams = {'figure.autolayout': True}
plot_formats = (('thumb.png', 20),
'png',
'pdf'
Expand Down
2 changes: 1 addition & 1 deletion docs/source/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ What's new in cartopy 0.11

* Support for the :class:`~cartopy.crs.UTM` projection was added by Mark Hedley.

* Andrew Dawson has added the new convenience utility function
* Andrew Dawson has added a new convenience utility function
:func:`~cartopy.util.add_cyclic_point` to add a cyclic point to an array and
optionally to a corresponding 1D coordinate.

Expand Down
2 changes: 1 addition & 1 deletion lib/cartopy/examples/srtm_shading.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def main():

plt.title("SRTM Shaded Relief Map")

gl = ax.gridlines(draw_labels=True,)
gl = ax.gridlines(draw_labels=True)
gl.xlabels_top = False
gl.ylabels_left = False

Expand Down

0 comments on commit c34bcb4

Please sign in to comment.