Skip to content

Commit

Permalink
Merge branch 'Tillsten-patch-1'
Browse files Browse the repository at this point in the history
  • Loading branch information
efiring committed May 22, 2014
2 parents 69109de + 9d72862 commit 4b1bd63
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG
@@ -1,5 +1,8 @@
2014-05-22 Allow the linscale keyword parameter of symlog scale to be
smaller than one.

2014-05-20 Added logic to in FontManager to invalidate font-cache if
if font-family rcparams have changed.
if font-family rcparams have changed.

2014-05-16 Fixed the positioning of multi-line text in the PGF backend.

Expand Down Expand Up @@ -34,8 +37,8 @@
of a generator at line 263.

2014-02-25 In backend_qt4agg changed from using update -> repaint under
windows. See comment in source near `self._priv_update` for
longer explaination.
windows. See comment in source near `self._priv_update` for
longer explaination.

2014-03-27 Added tests for pie ccw parameter. Removed pdf and svg images
from tests for pie linewidth parameter.
Expand Down Expand Up @@ -66,7 +69,7 @@
2014-02-28 Added 'origin' kwarg to `spy`

2014-02-27 Implemented separate horizontal/vertical axes padding to the
ImageGrid in the AxesGrid toolkit
ImageGrid in the AxesGrid toolkit

2014-02-27 Allowed markevery property of matplotlib.lines.Line2D to be, an int
numpy fancy index, slice object, or float. The float behaviour
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/scale.py
Expand Up @@ -449,7 +449,7 @@ def __init__(self, axis, **kwargs):

assert base > 1.0
assert linthresh > 0.0
assert linscale >= 1.0
assert linscale > 0.0

self._transform = self.SymmetricalLogTransform(base,
linthresh,
Expand Down

0 comments on commit 4b1bd63

Please sign in to comment.