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 clutter+unsubscribe@o-hand.com
Received on Wed, 09 Aug 2006 22:49:34 +0200
This archive was generated by hypermail 2.1.8 : Mon Apr 30 2007 - 08:01:13 EDT