On Mon, 2011-01-17 at 15:26 -0600, Uday Verma wrote: > > Calling the parent "allocate" method fixed the problem. My allocate > function now looks like this:
the documentation for the size allocation in: http://docs.clutter-project.org/docs/clutter/stable/clutter-subclassing-ClutterActor.html and the ::allocate virtual function here: http://docs.clutter-project.org/docs/clutter/stable/ClutterActor.html#ClutterActorClass both tell you that you need to chain up to the parent's implementation, to allow ClutterActor to know that the allocation changed. ciao, Emmanuele. -- Emmanuele Bassi, Open Source Software Engineer Intel Open Source Technology Center _______________________________________________ clutter-app-devel-list mailing list [email protected] http://lists.clutter-project.org/listinfo/clutter-app-devel-list
