summaryrefslogtreecommitdiff
path: root/content/fetchcache.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2004-12-31 15:54:15 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2004-12-31 15:54:15 +0000
commite6de2f8b1d75651816f6d090e2b8e36290a9ce70 (patch)
tree555e0de3b46503919d72fb428a98de311cef97e4 /content/fetchcache.c
parenta4719d407b30c4cf3fc6b9eb84c6d9dda06e6918 (diff)
downloadnetsurf-e6de2f8b1d75651816f6d090e2b8e36290a9ce70.tar.gz
netsurf-e6de2f8b1d75651816f6d090e2b8e36290a9ce70.tar.bz2
[project @ 2004-12-31 15:54:15 by jmb]
Fix scrollbar issue when fetching cached HTML contents. svn path=/import/netsurf/; revision=1414
Diffstat (limited to 'content/fetchcache.c')
-rw-r--r--content/fetchcache.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/content/fetchcache.c b/content/fetchcache.c
index 192da6cd4..54fd7e1c8 100644
--- a/content/fetchcache.c
+++ b/content/fetchcache.c
@@ -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;
}
}