From: <mme...@us...> - 2008-10-20 09:09:14
|
Revision: 6281 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6281&view=rev Author: mmetz_bn Date: 2008-10-20 09:04:54 +0000 (Mon, 20 Oct 2008) Log Message: ----------- fix legend prop bug; yoffset not a prop Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/legend.py Modified: trunk/matplotlib/lib/matplotlib/legend.py =================================================================== --- trunk/matplotlib/lib/matplotlib/legend.py 2008-10-20 07:52:58 UTC (rev 6280) +++ trunk/matplotlib/lib/matplotlib/legend.py 2008-10-20 09:04:54 UTC (rev 6281) @@ -119,9 +119,9 @@ Artist.__init__(self) proplist=[numpoints, pad, borderpad, markerscale, labelsep, - handlelen, handletextsep, axespad, shadow, scatteryoffsets] + handlelen, handletextsep, axespad, shadow] propnames=['numpoints', 'pad', 'borderpad', 'markerscale', 'labelsep', - 'handlelen', 'handletextsep', 'axespad', 'shadow', 'scatteryoffsets'] + 'handlelen', 'handletextsep', 'axespad', 'shadow'] for name, value in safezip(propnames,proplist): if value is None: value=rcParams["legend."+name] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |