From: <md...@us...> - 2008-07-08 14:52:03
|
Revision: 5720 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5720&view=rev Author: mdboom Date: 2008-07-08 07:50:20 -0700 (Tue, 08 Jul 2008) Log Message: ----------- Improve mathtext superscript placement. Modified Paths: -------------- branches/v0_91_maint/CHANGELOG branches/v0_91_maint/lib/matplotlib/mathtext.py Modified: branches/v0_91_maint/CHANGELOG =================================================================== --- branches/v0_91_maint/CHANGELOG 2008-07-08 12:05:54 UTC (rev 5719) +++ branches/v0_91_maint/CHANGELOG 2008-07-08 14:50:20 UTC (rev 5720) @@ -1,3 +1,5 @@ +2008-07-08 Improve mathtext superscript placement - MGD + 2008-06-30 Removed Qt4 NavigationToolbar2.destroy -- it appears to have been unnecessary and caused a bug reported by P. Raybaut - DSD Modified: branches/v0_91_maint/lib/matplotlib/mathtext.py =================================================================== --- branches/v0_91_maint/lib/matplotlib/mathtext.py 2008-07-08 12:05:54 UTC (rev 5719) +++ branches/v0_91_maint/lib/matplotlib/mathtext.py 2008-07-08 14:50:20 UTC (rev 5720) @@ -1167,7 +1167,7 @@ # Percentage of x-height that sub/superscripts drop below the baseline SUBDROP = 0.3 # Percentage of x-height that superscripts drop below the baseline -SUP1 = 0.7 +SUP1 = 0.5 # Percentage of x-height that subscripts drop below the baseline SUB1 = 0.0 # Percentage of x-height that superscripts are offset relative to the subscript This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |