From: <ef...@us...> - 2010-06-09 03:01:59
|
Revision: 8399 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8399&view=rev Author: efiring Date: 2010-06-09 03:01:53 +0000 (Wed, 09 Jun 2010) Log Message: ----------- [2982047] start default collection label with underscore, like line label Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/axes.py Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2010-06-08 22:41:10 UTC (rev 8398) +++ trunk/matplotlib/lib/matplotlib/axes.py 2010-06-09 03:01:53 UTC (rev 8399) @@ -1398,7 +1398,7 @@ ''' label = collection.get_label() if not label: - collection.set_label('collection%d'%len(self.collections)) + collection.set_label('_collection%d'%len(self.collections)) self.collections.append(collection) self._set_artist_props(collection) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |