mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
(x_draw_glyph_string): Be sure to update
s->underline_thickness and s->underline_position.
This commit is contained in:
parent
cc4a96c680
commit
71b7654711
2 changed files with 4 additions and 4 deletions
|
|
@ -2908,9 +2908,9 @@ x_draw_glyph_string (s)
|
|||
else if (s->font)
|
||||
position = (s->font->descent + 1) / 2;
|
||||
}
|
||||
s->underline_thickness = thickness;
|
||||
s->underline_position =position;
|
||||
}
|
||||
s->underline_thickness = thickness;
|
||||
s->underline_position =position;
|
||||
y = s->ybase + position;
|
||||
if (s->face->underline_defaulted_p)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2742,9 +2742,9 @@ x_draw_glyph_string (s)
|
|||
else if (s->font)
|
||||
position = (s->font->descent + 1) / 2;
|
||||
}
|
||||
s->underline_thickness = thickness;
|
||||
s->underline_position = position;
|
||||
}
|
||||
s->underline_thickness = thickness;
|
||||
s->underline_position = position;
|
||||
y = s->ybase + position;
|
||||
if (s->face->underline_defaulted_p)
|
||||
XFillRectangle (s->display, s->window, s->gc,
|
||||
|
|
|
|||
Loading…
Reference in a new issue