mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-27 16:59:36 +03:00
[project @ 2005-04-14 01:35:47 by rjw]
Fix textarea redraw errors. svn path=/import/netsurf/; revision=1630
This commit is contained in:
parent
3e82c07a88
commit
1d166e2b33
@ -80,9 +80,6 @@ void ro_gui_buffer_open(wimp_draw *redraw) {
|
||||
|
||||
/* Stop bad rectangles
|
||||
*/
|
||||
LOG(("Clipping rectangle (%i, %i) to (%i,%i)",
|
||||
clipping.x0, clipping.y0,
|
||||
clipping.x1, clipping.y1));
|
||||
if ((clipping.x1 < clipping.x0) ||
|
||||
(clipping.y1 < clipping.y0)) {
|
||||
LOG(("Invalid clipping rectangle (%i, %i) to (%i,%i)",
|
||||
@ -221,8 +218,8 @@ void ro_gui_buffer_close(void) {
|
||||
|
||||
/* Remove any previous redirection
|
||||
*/
|
||||
ro_plot_origin_x -= clipping.x0;
|
||||
ro_plot_origin_y -= clipping.y0;
|
||||
ro_plot_origin_x += clipping.x0;
|
||||
ro_plot_origin_y += clipping.y0;
|
||||
xosspriteop_switch_output_to_sprite(osspriteop_PTR,
|
||||
context1, context2, context3,
|
||||
0, 0, 0, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user