From: <md...@us...> - 2008-07-08 14:57:03
|
Revision: 5721 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5721&view=rev Author: mdboom Date: 2008-07-08 07:55:33 -0700 (Tue, 08 Jul 2008) Log Message: ----------- Merged revisions 5685-5720 via svnmerge from https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v0_91_maint ........ r5700 | dsdale | 2008-06-30 09:24:13 -0400 (Mon, 30 Jun 2008) | 2 lines removed Qt4's NavigationToolbar2.destroy method ........ r5706 | mdboom | 2008-07-02 11:36:38 -0400 (Wed, 02 Jul 2008) | 2 lines Fix bug using autolegend with LineCollection. ........ r5720 | mdboom | 2008-07-08 10:50:20 -0400 (Tue, 08 Jul 2008) | 2 lines Improve mathtext superscript placement. ........ Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/lib/matplotlib/mathtext.py Property Changed: ---------------- trunk/matplotlib/ Property changes on: trunk/matplotlib ___________________________________________________________________ Name: svnmerge-integrated - /branches/v0_91_maint:1-5684 + /branches/v0_91_maint:1-5720 Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2008-07-08 14:50:20 UTC (rev 5720) +++ trunk/matplotlib/CHANGELOG 2008-07-08 14:55:33 UTC (rev 5721) @@ -1,3 +1,5 @@ +2008-07-08 Improve mathtext superscript placement - MGD + 2008-07-07 Fix custom scales in pcolormesh (thanks Matthew Turk) - MGD 2008-07-03 Implemented findobj method for artist and pyplot - see Modified: trunk/matplotlib/lib/matplotlib/mathtext.py =================================================================== --- trunk/matplotlib/lib/matplotlib/mathtext.py 2008-07-08 14:50:20 UTC (rev 5720) +++ trunk/matplotlib/lib/matplotlib/mathtext.py 2008-07-08 14:55:33 UTC (rev 5721) @@ -1169,7 +1169,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. |