summaryrefslogtreecommitdiff
path: root/framebuffer
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-12-23 22:39:25 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-12-23 22:39:25 +0000
commit67f2470d5a13109af213714efa99e42a4473cfd2 (patch)
tree01b8b9c870d2abf357a164222e56da9902f5bbb5 /framebuffer
parent879383e21ef3400eb2433579265ffd9db6faf801 (diff)
downloadnetsurf-67f2470d5a13109af213714efa99e42a4473cfd2.tar.gz
netsurf-67f2470d5a13109af213714efa99e42a4473cfd2.tar.bz2
Pass whether background images are wanted in redraw_context.
svn path=/trunk/netsurf/; revision=13335
Diffstat (limited to 'framebuffer')
-rw-r--r--framebuffer/gui.c1
-rw-r--r--framebuffer/localhistory.c1
-rw-r--r--framebuffer/thumbnail.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/framebuffer/gui.c b/framebuffer/gui.c
index 13fbf2836..7fe9f81a2 100644
--- a/framebuffer/gui.c
+++ b/framebuffer/gui.c
@@ -304,6 +304,7 @@ fb_redraw(fbtk_widget_t *widget,
struct rect clip;
struct redraw_context ctx = {
.interactive = true,
+ .background_images = true,
.plot = &fb_plotters
};
diff --git a/framebuffer/localhistory.c b/framebuffer/localhistory.c
index 6f47ca5b2..4b329a832 100644
--- a/framebuffer/localhistory.c
+++ b/framebuffer/localhistory.c
@@ -62,6 +62,7 @@ localhistory_redraw(fbtk_widget_t *widget, fbtk_callback_info *cbi)
struct redraw_context ctx = {
.interactive = true,
+ .background_images = true,
.plot = &fb_plotters
};
diff --git a/framebuffer/thumbnail.c b/framebuffer/thumbnail.c
index 1a3e2784b..1729d7775 100644
--- a/framebuffer/thumbnail.c
+++ b/framebuffer/thumbnail.c
@@ -43,6 +43,7 @@ thumbnail_create(struct hlcache_handle *content,
struct redraw_context ctx = {
.interactive = false,
+ .background_images = true,
.plot = &fb_plotters
};