inspector: Avoid a critical

If a layout manager does not have layout children,
quietly hide the layout page.
This commit is contained in:
Matthias Clasen 2019-04-05 19:44:16 +00:00
parent ef9dc43474
commit cb3d61bb0e

View File

@ -528,6 +528,9 @@ gtk_inspector_prop_list_set_layout_child (GtkInspectorPropList *pl,
if (!layout_manager)
return;
if (GTK_LAYOUT_MANAGER_GET_CLASS (layout_manager)->layout_child_type == G_TYPE_INVALID)
return;
layout_child = gtk_layout_manager_get_layout_child (layout_manager, GTK_WIDGET (object));
if (!layout_child)
return;