2008-02-15 Tomas Frydrych <tf@openedhand.com>

* clutter/clutter-group.c: (clutter_group_query_coords):
	Disabled new code taking into account actor scale and rotation.
This commit is contained in:
Tomas Frydrych 2008-02-15 09:13:58 +00:00
parent ea9b7b6550
commit 4d53cb1037
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2008-02-15 Tomas Frydrych <tf@openedhand.com>
* clutter/clutter-group.c: (clutter_group_query_coords):
Disabled new code taking into account actor scale and rotation.
2008-02-14 Tomas Frydrych <tf@openedhand.com>
* clutter/clutter-actor.c:

View File

@ -213,6 +213,7 @@ clutter_group_query_coords (ClutterActor *self,
ClutterActor *child = CLUTTER_ACTOR(child_item->data);
ClutterActorBox cbox;
#if 0 /* Leave this post 0.6 ??? */
if (clutter_actor_is_scaled (child) ||
clutter_actor_is_rotated (child))
{
@ -222,6 +223,7 @@ clutter_group_query_coords (ClutterActor *self,
clutter_group_get_box_from_vertices (&cbox, vtx);
}
else
#endif
{
gint anchor_x;
gint anchor_y;