mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-28 22:41:43 +00:00
image: Use new snapshot transforms
This commit is contained in:
parent
f0795a795b
commit
65174c7989
@ -1125,9 +1125,10 @@ gtk_image_snapshot (GtkWidget *widget,
|
|||||||
else
|
else
|
||||||
y = CLAMP (baseline - h * gtk_image_get_baseline_align (image), 0, height - ceil (h));
|
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);
|
gdk_paintable_snapshot (GDK_PAINTABLE (priv->icon_helper), snapshot, w, h);
|
||||||
gtk_snapshot_offset (snapshot, -x, -y);
|
gtk_snapshot_restore (snapshot);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user