GNOME Bugzilla – Bug 761254
GtkDialog exposes public action_box internal child
Last modified: 2016-01-29 03:38:52 UTC
It seems this was unintentional to make the action_box reachable as a public internal child in its GtkBuilder API. It does so by calling: gtk_widget_class_bind_template_child_internal_private() instead of: gtk_widget_class_bind_template_child_private() Unfortunately, other classes in GTK+ have started to use this, specifically the unix print dialog UI file uses it. The result is that we should not add support for this unintentionally exposed internal child from Glade, but Glade cannot edit the unix print dialog because of that.