Skip to content

Commit

Permalink
set do_kern=True in spaced symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
zblz committed Aug 6, 2015
1 parent d22f626 commit fb9f5a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/matplotlib/mathtext.py
Original file line number Diff line number Diff line change
Expand Up @@ -2464,11 +2464,11 @@ def symbol(self, s, loc, toks):
return [Hlist( [self._make_space(0.2),
char,
self._make_space(0.2)] ,
do_kern = False)]
do_kern = True)]
elif c in self._punctuation_symbols:
return [Hlist( [char,
self._make_space(0.2)] ,
do_kern = False)]
do_kern = True)]
return [char]

def unknown_symbol(self, s, loc, toks):
Expand Down

0 comments on commit fb9f5a3

Please sign in to comment.