GtkButton: Pick up images that are set early

We were failing to construct the child if an image was set
before constructed (e.g. in the init() function of a button
subclass).

https://bugzilla.gnome.org/show_bug.cgi?id=753048
This commit is contained in:
Matthias Clasen 2015-08-03 22:35:36 -04:00
parent ba45fa09b4
commit b10bfe128f

View File

@ -720,7 +720,7 @@ gtk_button_constructed (GObject *object)
priv->constructed = TRUE;
if (priv->label_text != NULL)
if (priv->label_text != NULL || priv->image != NULL)
gtk_button_construct_child (button);
}