Don't crash if snapshotting a GtkGraphicsOffload without child

This commit is contained in:
Sebastian Dröge 2024-04-25 22:46:35 +03:00
parent 62ad1a61dc
commit 2c9b47ff3c

View File

@ -226,7 +226,8 @@ gtk_graphics_offload_snapshot (GtkWidget *widget,
gtk_widget_get_width (widget),
gtk_widget_get_height (widget)));
gtk_widget_snapshot_child (widget, self->child, snapshot);
if (self->child)
gtk_widget_snapshot_child (widget, self->child, snapshot);
if (self->subsurface)
gtk_snapshot_pop (snapshot);