box gadget: Improve assertion message

Include the owner of the gadget in the assertion message,
to improve the chances of tracking down whats actually
going wrong here.
This commit is contained in:
Matthias Clasen 2016-01-26 22:11:54 -05:00
parent 745624235b
commit 8991f17d49

View File

@ -133,7 +133,11 @@ gtk_box_gadget_distribute (GtkBoxGadget *gadget,
size -= sizes[i].minimum_size;
}
g_return_if_fail (size >= 0);
if G_UNLIKELY (size < 0)
{
g_critical ("%s: assertion 'size >= 0' failed in %s", G_STRFUNC, G_OBJECT_TYPE_NAME (gtk_css_gadget_get_owner (GTK_CSS_GADGET (gadget))));
return;
}
size = gtk_distribute_natural_allocation (size, priv->children->len, sizes);