mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-12 18:01:46 -07:00
(x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
Clip to src->width, etc (not src->clip_XXX).
This commit is contained in:
parent
4dd030566e
commit
1b4fe7abd2
1 changed files with 3 additions and 3 deletions
|
|
@ -1193,9 +1193,9 @@ x_set_glyph_string_clipping_exactly (src, dst)
|
|||
if (enable_font_backend)
|
||||
{
|
||||
r.x = dst->clip_x = src->x;
|
||||
r.width = dst->clip_width = src->clip_width;
|
||||
r.y = dst->clip_y = src->clip_y;
|
||||
r.height = dst->clip_height = src->clip_height;
|
||||
r.width = dst->clip_width = src->width;
|
||||
r.y = dst->clip_y = src->y;
|
||||
r.height = dst->clip_height = src->height;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue