8000 fixed figlegend clipping bug · matplotlib/matplotlib@28a43e3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 28a43e3

Browse files
committed
fixed figlegend clipping bug
svn path=/trunk/matplotlib/; revision=967
1 parent 2ee682b commit 28a43e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/matplotlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
Most of the other commands are from the Numeric, MLab and FFT, with
141141
the exception of those in mlab.py provided by matplotlib.
142142
"""
143-
__version__ = '0.72rc1'
143+
__version__ = '0.72'
144144
__revision__ = '$Revision$'
145145
__date__ = '$Date$'
146146

lib/matplotlib/legend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def _get_handles(self, handles, texts):
229229
)
230230
p.update_from(handle)
231231
self._set_artist_props(p)
232-
legline.set_clip_box(None)
232+
p.set_clip_box(None)
233233
ret.append(p)
234234
elif isinstance(handle, LineCollection):
235235
ydata = (y-HEIGHT/2)*ones(self._xdata.shape, Float)

0 commit comments

Comments
 (0)
0