mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-24 21:16:50 +03:00
Un-fix scaled box redraw, as it cause more problems than it solves
This commit is contained in:
parent
ccaeced4bf
commit
34f1e427f9
@ -3689,8 +3689,8 @@ void ami_do_redraw_tiled(struct gui_window_2 *gwin, bool busy,
|
||||
BLITA_SrcY, 0,
|
||||
BLITA_DestType, BLITT_RASTPORT,
|
||||
BLITA_Dest, gwin->win->RPort,
|
||||
BLITA_DestX, bbox->Left + (int)((x * gwin->bw->scale) - sx),
|
||||
BLITA_DestY, bbox->Top + (int)((y * gwin->bw->scale) - sy),
|
||||
BLITA_DestX, bbox->Left + (int)((x - sx) * gwin->bw->scale),
|
||||
BLITA_DestY, bbox->Top + (int)((y - sy) * gwin->bw->scale),
|
||||
BLITA_Width, (int)(clip.x1),
|
||||
BLITA_Height, (int)(clip.y1),
|
||||
TAG_DONE);
|
||||
|
Loading…
Reference in New Issue
Block a user