mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-23 06:51:26 +03:00
correct full-window redraw co-ords
This commit is contained in:
parent
4b7abde7b0
commit
4892497a19
@ -295,8 +295,8 @@ ami_cw_redraw(struct ami_corewindow *ami_cw, const struct rect *restrict r)
|
||||
return;
|
||||
}
|
||||
|
||||
new_rect.x0 = bbox->Left;
|
||||
new_rect.y0 = bbox->Top;
|
||||
new_rect.x0 = 0;
|
||||
new_rect.y0 = 0;
|
||||
ami_cw_coord_amiga_to_ns(ami_cw, &new_rect.x0, &new_rect.y0);
|
||||
new_rect.x1 = new_rect.x0 + bbox->Width;
|
||||
new_rect.y1 = new_rect.y0 + bbox->Height;
|
||||
|
Loading…
Reference in New Issue
Block a user