|
From: <ef...@us...> - 2008-06-20 04:52:12
|
Revision: 5603
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5603&view=rev
Author: efiring
Date: 2008-06-19 21:51:47 -0700 (Thu, 19 Jun 2008)
Log Message:
-----------
Make set_default_size set the variable actually being used elsewhere
Modified Paths:
--------------
branches/v0_91_maint/lib/matplotlib/font_manager.py
Modified: branches/v0_91_maint/lib/matplotlib/font_manager.py
===================================================================
--- branches/v0_91_maint/lib/matplotlib/font_manager.py 2008-06-20 02:17:02 UTC (rev 5602)
+++ branches/v0_91_maint/lib/matplotlib/font_manager.py 2008-06-20 04:51:47 UTC (rev 5603)
@@ -921,7 +921,7 @@
def set_default_size(self, size):
"Set the default font size in points. The initial value is set by font.size in rc."
- self.__default_size = size
+ self.default_size = size
def update_fonts(self, filenames):
"""
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|