fixed vbox and hbox pack functions

This commit is contained in:
Tomas Frydrych 2007-06-14 15:56:22 +00:00
parent 342e048d71
commit 699297ad64
3 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,11 @@
2007-06-14 Tomas Frydrych <tf@openedhand.com>
* clutter/clutter-vbox.c:
* clutter/clutter-hbox.c:
(clutter_vbox_pack_child):
(clutter_hbox_pack_child):
Fixed child coords.
2007-06-14 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-box.[ch]: Base class for layout containers.

View File

@ -85,8 +85,8 @@ clutter_hbox_pack_child (ClutterBox *box,
clutter_actor_get_geometry (CLUTTER_ACTOR (box), &box_geom);
clutter_actor_get_geometry (child->actor, &child_geom);
child_geom.x = box_geom.x + box_geom.width + spacing;
child_geom.y = box_geom.y;
child_geom.x = box_geom.width + spacing;
child_geom.y = 0;
clutter_actor_set_geometry (child->actor, &child_geom);
}

View File

@ -85,8 +85,8 @@ clutter_vbox_pack_child (ClutterBox *box,
clutter_actor_get_geometry (CLUTTER_ACTOR (box), &box_geom);
clutter_actor_get_geometry (child->actor, &child_geom);
child_geom.x = box_geom.x;
child_geom.y = box_geom.y + box_geom.height + spacing;
child_geom.x = 0;
child_geom.y = box_geom.height + spacing;
clutter_actor_set_geometry (child->actor, &child_geom);
}