|
From: <lee...@us...> - 2009-11-01 04:38:06
|
Revision: 7912
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7912&view=rev
Author: leejjoon
Date: 2009-11-01 04:37:56 +0000 (Sun, 01 Nov 2009)
Log Message:
-----------
Fix LineCollection not setting color correctly
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/collections.py
Modified: trunk/matplotlib/lib/matplotlib/collections.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/collections.py 2009-10-29 19:04:42 UTC (rev 7911)
+++ trunk/matplotlib/lib/matplotlib/collections.py 2009-11-01 04:37:56 UTC (rev 7912)
@@ -856,7 +856,7 @@
ACCEPTS: matplotlib color arg or sequence of rgba tuples
"""
- self._edgecolors = mcolors.colorConverter.to_rgba_array(c)
+ self.set_edgecolor(c)
def color(self, c):
"""
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|