diff options
author | Kenichi Handa <handa@m17n.org> | 2009-04-06 11:08:56 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2009-04-06 11:08:56 +0000 |
commit | bc981e4e5acef4558cfa547256cb76097cd0e3d6 (patch) | |
tree | a49d41ab67b831584142807f9b4ba75fece49c4d /src/xftfont.c | |
parent | 0c26f026c83f0cc4193ed534cb6d70e65269e75f (diff) | |
download | emacs-bc981e4e5acef4558cfa547256cb76097cd0e3d6.tar.gz |
(xftfont_open): Fix setting font->underline_thickness.
Diffstat (limited to 'src/xftfont.c')
-rw-r--r-- | src/xftfont.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xftfont.c b/src/xftfont.c index 9474283c218..e533fd73791 100644 --- a/src/xftfont.c +++ b/src/xftfont.c @@ -360,7 +360,7 @@ xftfont_open (f, entity, pixel_size) int upEM = ft_face->units_per_EM; font->underline_position = -ft_face->underline_position * size / upEM; - font->underline_thickness = -ft_face->underline_thickness * size / upEM; + font->underline_thickness = ft_face->underline_thickness * size / upEM; if (font->underline_thickness > 2) font->underline_position -= font->underline_thickness / 2; } |