Skip to content

Commit fb9f5a3

Browse files
committed
set do_kern=True in spaced symbols
1 parent d22f626 commit fb9f5a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/mathtext.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2464,11 +2464,11 @@ def symbol(self, s, loc, toks):
24642464
return [Hlist( [self._make_space(0.2),
24652465
char,
24662466
self._make_space(0.2)] ,
2467-
do_kern = False)]
2467+
do_kern = True)]
24682468
elif c in self._punctuation_symbols:
24692469
return [Hlist( [char,
24702470
self._make_space(0.2)] ,
2471-
do_kern = False)]
2471+
do_kern = True)]
24722472
return [char]
24732473

24742474
def unknown_symbol(self, s, loc, toks):

0 commit comments

Comments
 (0)