GtkScale: Properly chain up in GtkBuildableIface->custom_finished()

This was causing <style> markup to be ignored when specified
on GtkScale types.
This commit is contained in:
Tristan Van Berkom 2013-04-08 21:04:50 +09:00
parent 6629e839d0
commit 38dc4733c0

View File

@ -1903,4 +1903,10 @@ gtk_scale_buildable_custom_finished (GtkBuildable *buildable,
g_slist_free (marks_data->marks);
g_slice_free (MarksSubparserData, marks_data);
}
else
{
parent_buildable_iface->custom_finished (buildable, builder, child,
tagname, user_data);
}
}