[animation] Fix variable use
Instead of using the proper typed variables we were overwriting the gpointer for the Interval's final value.
This commit is contained in:
parent
f4ad3761c4
commit
57baa2f0bc
@ -143,8 +143,8 @@ clutter_animation_real_completed (ClutterAnimation *self)
|
|||||||
ClutterInterval *interval = value;
|
ClutterInterval *interval = value;
|
||||||
GValue *p_value;
|
GValue *p_value;
|
||||||
|
|
||||||
value = clutter_interval_peek_final_value (interval);
|
p_value = clutter_interval_peek_final_value (interval);
|
||||||
g_object_set_property (priv->object, p_name, value);
|
g_object_set_property (priv->object, p_name, p_value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* at this point, if this animation was created by clutter_actor_animate()
|
/* at this point, if this animation was created by clutter_actor_animate()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user