grid layout: Fix initial property values

Too bad that we don't cover layout children
in the default value test - it would have
caught this.
This commit is contained in:
Matthias Clasen 2019-06-28 12:40:25 +00:00
parent 9e6b4e82c9
commit 8fa7de5563

View File

@ -212,6 +212,8 @@ gtk_grid_layout_child_class_init (GtkGridLayoutChildClass *klass)
static void
gtk_grid_layout_child_init (GtkGridLayoutChild *self)
{
CHILD_ROW_SPAN (self) = 1;
CHILD_COL_SPAN (self) = 1;
}
/**