summaryrefslogtreecommitdiff
path: root/gdk/gdkcairo.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2013-09-24 17:43:44 +0200
committerBenjamin Otte <otte@redhat.com>2013-09-24 17:43:44 +0200
commit3d7e0f3eb1b64ae457a99b26fc8b833bdd621fb0 (patch)
treee0416f4594156d78c67d490768ed1132046ddde7 /gdk/gdkcairo.c
parent7a9641b0f6c7ce8c76b9215a2b148df58cfbdaae (diff)
downloadgtk+-3d7e0f3eb1b64ae457a99b26fc8b833bdd621fb0.tar.gz
gdkcairo: Actually paint the pixbuf
I accidentally a line before committing b41787bc788d03aaf3dc3c734bc7e8161c1e713a - whoops.
Diffstat (limited to 'gdk/gdkcairo.c')
-rw-r--r--gdk/gdkcairo.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdk/gdkcairo.c b/gdk/gdkcairo.c
index ae0c294b70..96243925c4 100644
--- a/gdk/gdkcairo.c
+++ b/gdk/gdkcairo.c
@@ -334,6 +334,8 @@ gdk_cairo_set_source_pixbuf (cairo_t *cr,
gdk_pixbuf_get_width (pixbuf),
gdk_pixbuf_get_height (pixbuf));
+ gdk_cairo_surface_paint_pixbuf (surface, pixbuf);
+
cairo_set_source_surface (cr, surface, pixbuf_x, pixbuf_y);
cairo_surface_destroy (surface);
}