Revision: 3679
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3679&view=rev
Author:   mdboom
Date:     2007-08-07 07:34:24 -0700 (Tue, 07 Aug 2007)

Log Message:
-----------
Fix character spacing bug in non-mathtext

Modified Paths:
--------------
    trunk/matplotlib/lib/matplotlib/backends/backend_svg.py

Modified: trunk/matplotlib/lib/matplotlib/backends/backend_svg.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/backends/backend_svg.py     2007-08-07 
00:35:08 UTC (rev 3678)
+++ trunk/matplotlib/lib/matplotlib/backends/backend_svg.py     2007-08-07 
14:34:24 UTC (rev 3679)
@@ -276,9 +276,9 @@
                 currx += kern/64.0
 
                 svg.append('<use xlink:href="#%s" 
transform="translate(%s)"/>\n' 
-                           % (charid, currx / (fontsize / self.FONT_SCALE)))
+                           % (charid, currx))
                 
-                currx += glyph.linearHoriAdvance / 65536.0
+                currx += (glyph.linearHoriAdvance / 65536.0)
             svg.append('</g>\n')
             svg = ''.join(svg)
         else:


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Matplotlib-checkins mailing list
Matplotlib-checkins@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to