diff --git a/ChangeLog b/ChangeLog index c0905d3bb..4ad1b5779 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-02-01 Matthew Allum + + * clutter/clutter-texture.c: (clutter_texture_new_from_actor): + Fix typo breaking FBO rendering on anything other than a cloned + texture. + 2008-02-01 Matthew Allum * clutter/clutter-feature.h: diff --git a/clutter/clutter-texture.c b/clutter/clutter-texture.c index 0df4041cf..e759c0dcf 100644 --- a/clutter/clutter-texture.c +++ b/clutter/clutter-texture.c @@ -2185,7 +2185,7 @@ clutter_texture_new_from_actor (ClutterActor *actor) priv->fbo_handle = cogl_offscreen_create (priv->tiles[0]); - clutter_actor_set_size (actor, w, h); + clutter_actor_set_size (texture, w, h); return CLUTTER_ACTOR(texture); }