mutter/tests/data/test-script-layout-property.json
Bastian Winkler 870e7ddfad test-script-parser: Add a second child to the container
The script parser won't apply child and layout properties correctly with
more than one children.

http://bugzilla.clutter-project.org/show_bug.cgi?id=2285

Signed-off-by: Emmanuele Bassi <ebassi@linux.intel.com>
2010-08-25 16:18:25 +01:00

22 lines
514 B
JSON

[
{ "id" : "manager", "type" : "ClutterBoxLayout" },
{
"id" : "container", "type" : "ClutterBox",
"layout-manager" : "manager",
"children" : [
{
"id" : "actor-1", "type" : "ClutterRectangle",
"layout::x-fill" : true,
"layout::y-align" : "center",
"layout::expand" : true
}, {
"id" : "actor-2", "type" : "ClutterRectangle",
"layout::x-fill" : false,
"layout::y-align" : "end",
"layout::expand" : false
}
]
}
]