mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-23 12:36:51 +03:00
Fix abort of page render on failed content_redraw of background image.
This commit is contained in:
parent
5e774272cd
commit
d399f565ed
@ -1482,9 +1482,9 @@ static bool html_redraw_background(int x, int y, struct box *box, float scale,
|
|||||||
bg_data.repeat_x = repeat_x;
|
bg_data.repeat_x = repeat_x;
|
||||||
bg_data.repeat_y = repeat_y;
|
bg_data.repeat_y = repeat_y;
|
||||||
|
|
||||||
if (!content_redraw(background->background,
|
/* We just continue if redraw fails */
|
||||||
&bg_data, &r, ctx))
|
content_redraw(background->background,
|
||||||
return false;
|
&bg_data, &r, ctx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1634,8 +1634,8 @@ static bool html_redraw_inline_background(int x, int y, struct box *box,
|
|||||||
bg_data.repeat_x = repeat_x;
|
bg_data.repeat_x = repeat_x;
|
||||||
bg_data.repeat_y = repeat_y;
|
bg_data.repeat_y = repeat_y;
|
||||||
|
|
||||||
if (!content_redraw(box->background, &bg_data, &r, ctx))
|
/* We just continue if redraw fails */
|
||||||
return false;
|
content_redraw(box->background, &bg_data, &r, ctx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user