Add a note about those lines I commented out earlier.. have remembered why they were

there.  Leave them commented out pending a fix.

svn path=/trunk/netsurf/; revision=6975
This commit is contained in:
Chris Young 2009-03-28 20:36:07 +00:00
parent e240c200d5
commit 67719a64e6

View File

@ -2154,6 +2154,11 @@ void ami_do_redraw_limits(struct gui_window *g, struct content *c,int x0, int y0
/*
DebugPrintF("%ld %ld %ld %ld old\n%ld %ld %ld %ld x0-xc etc\n",x0,y0,x1,y1,x0-hcurrent,y0-vcurrent,width+x0,height+y0);
DebugPrintF("%ld %ld calc\n",(y1-y0)+(yoffset+y0-vcurrent),(y0-(int)vcurrent));
*/
/* These stop the screen scrolling oddly when animated GIFs are on the page.
* They also stop boxes (eg textarea fields) from updating when they are part-way
* off the screen.
if((((y1-y0)+(yoffset+y0-vcurrent))<0) || ((y0-(int)vcurrent)>height)) return;
if((((x1-x0)+(xoffset+x0-hcurrent))<0) || ((x0-(int)hcurrent)>width)) return;