[project @ 2004-12-31 15:54:15 by jmb]

Fix scrollbar issue when fetching cached HTML contents.

svn path=/import/netsurf/; revision=1414
This commit is contained in:
John Mark Bell 2004-12-31 15:54:15 +00:00
parent a4719d407b
commit e6de2f8b1d

View File

@ -85,11 +85,6 @@ struct content * fetchcache(const char *url,
if ((c = content_get(url1)) != NULL) {
free(url1);
content_add_user(c, callback, p1, p2);
/* resize HTML content to the required size */
if (c->type == CONTENT_HTML) {
c->width = width;
c->height = height;
}
return c;
}
}