From 65174c7989d52c9722140407ad7fdcde73ed35ac Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Thu, 21 Feb 2019 05:34:12 +0100 Subject: [PATCH] image: Use new snapshot transforms --- gtk/gtkimage.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gtk/gtkimage.c b/gtk/gtkimage.c index 20e9bc41e3..b43edd7a41 100644 --- a/gtk/gtkimage.c +++ b/gtk/gtkimage.c @@ -1125,9 +1125,10 @@ gtk_image_snapshot (GtkWidget *widget, else y = CLAMP (baseline - h * gtk_image_get_baseline_align (image), 0, height - ceil (h)); - gtk_snapshot_offset (snapshot, x, y); + gtk_snapshot_save (snapshot); + gtk_snapshot_translate (snapshot, &GRAPHENE_POINT_INIT (x, y)); gdk_paintable_snapshot (GDK_PAINTABLE (priv->icon_helper), snapshot, w, h); - gtk_snapshot_offset (snapshot, -x, -y); + gtk_snapshot_restore (snapshot); } }