Stop screen updates going odd when animated GIFs are in the page.

Much simpler tests than before too.

svn path=/trunk/netsurf/; revision=6985
This commit is contained in:
Chris Young 2009-03-29 10:53:51 +00:00
parent 87add71110
commit 736cb29be0
1 changed files with 2 additions and 6 deletions

View File

@ -2156,13 +2156,9 @@ DebugPrintF("%ld %ld %ld %ld old\n%ld %ld %ld %ld x0-xc etc\n",x0,y0,x1,y1,x0-hc
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<vcurrent) || (y0>vcurrent+height)) return;
if((x1<hcurrent) || (x0>hcurrent+width)) return;
if((((y1-y0)+(yoffset+y0-vcurrent))<0) || ((y0-(int)vcurrent)>height)) return;
if((((x1-x0)+(xoffset+x0-hcurrent))<0) || ((x0-(int)hcurrent)>width)) return;
*/
if((x0-(int)hcurrent)<0) x0 = hcurrent;
if((y0-(int)vcurrent)<0) y0 = vcurrent;