From: <lee...@us...> - 2008-12-05 00:08:45
|
Revision: 6495 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6495&view=rev Author: leejjoon Date: 2008-12-05 00:08:43 +0000 (Fri, 05 Dec 2008) Log Message: ----------- minor fix for legend.py Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/legend.py Modified: trunk/matplotlib/lib/matplotlib/legend.py =================================================================== --- trunk/matplotlib/lib/matplotlib/legend.py 2008-12-05 00:06:26 UTC (rev 6494) +++ trunk/matplotlib/lib/matplotlib/legend.py 2008-12-05 00:08:43 UTC (rev 6495) @@ -383,7 +383,7 @@ labelboxes = [] for l in labels: - textbox = TextArea(l, textprops=label_prop + textbox = TextArea(l, textprops=label_prop, multilinebaseline=True, minimumdescent=True) text_list.append(textbox._text) labelboxes.append(textbox) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |