Hi,
Without this little oneliner, a group won't be translated if the user
has only set one non-null coordinate.
Cheers,
Fred
--
Index: clutter/clutter-group.c
===================================================================
--- clutter/clutter-group.c (révision 208)
+++ clutter/clutter-group.c (copie de travail)
@@ -75,7 +75,7 @@
clutter_actor_get_geometry (actor, &geom);
- if (geom.x != 0 && geom.y != 0)
+ if (geom.x != 0 || geom.y != 0)
glTranslatef(geom.x, geom.y, 0.0);
}
--
To unsubscribe send a mail to [EMAIL PROTECTED]