Fix up gtk_action_bar_forall

We need to always iterate over non-internal children.
This commit is contained in:
Matthias Clasen 2014-02-18 21:11:32 -05:00
parent 53f6b8582a
commit 3f0e28133d

View File

@ -132,7 +132,8 @@ gtk_action_bar_forall (GtkContainer *container,
if (include_internals)
(* callback) (priv->revealer, callback_data);
else if (priv->center_box)
if (priv->center_box)
gtk_container_forall (GTK_CONTAINER (priv->center_box), callback, callback_data);
}