|
From: <lee...@us...> - 2009-08-06 16:11:49
|
Revision: 7403
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7403&view=rev
Author: leejjoon
Date: 2009-08-06 16:11:30 +0000 (Thu, 06 Aug 2009)
Log Message:
-----------
fix legend bug ignoring CircleCollection
Modified Paths:
--------------
branches/v0_99_maint/lib/matplotlib/axes.py
Modified: branches/v0_99_maint/lib/matplotlib/axes.py
===================================================================
--- branches/v0_99_maint/lib/matplotlib/axes.py 2009-08-06 15:10:45 UTC (rev 7402)
+++ branches/v0_99_maint/lib/matplotlib/axes.py 2009-08-06 16:11:30 UTC (rev 7403)
@@ -3819,6 +3819,8 @@
if isinstance(c, mcoll.LineCollection)])
handles.extend([c for c in self.collections
if isinstance(c, mcoll.RegularPolyCollection)])
+ handles.extend([c for c in self.collections
+ if isinstance(c, mcoll.CircleCollection)])
return handles
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|