layoutmanager: Fix the child-widget property

We were setting the child-widget property to the parent.
Oops.
This commit is contained in:
Matthias Clasen 2020-08-21 14:29:14 -04:00
parent e5d088208a
commit 865b29500c

View File

@ -195,7 +195,7 @@ gtk_layout_manager_real_create_layout_child (GtkLayoutManager *manager,
return g_object_new (manager_class->layout_child_type,
"layout-manager", manager,
"child-widget", widget,
"child-widget", child,
NULL);
}