Skip to content

Commit

Permalink
Fixed mplrc default overriding in linewidth
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph.hogg committed Jul 30, 2015
1 parent 61c7f4c commit b89973a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/iris/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ def horiz_plot(v_coord, orography, style_args):
horiz_plot, style_args)


def outline(cube, coords=None, color='k', linewidth=1):
def outline(cube, coords=None, color='k', linewidth=None):
"""
Draws cell outlines based on the given Cube.
Expand Down
2 changes: 1 addition & 1 deletion lib/iris/quickplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def contourf(cube, *args, **kwargs):
return result


def outline(cube, coords=None, color='k', linewidth=1):
def outline(cube, coords=None, color='k', linewidth=None):
"""
Draws cell outlines on a labelled plot based on the given Cube.
Expand Down

0 comments on commit b89973a

Please sign in to comment.