mirror of
https://github.com/brl/mutter.git
synced 2024-11-12 17:27:03 -05:00
[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;
|
||||
GValue *p_value;
|
||||
|
||||
value = clutter_interval_peek_final_value (interval);
|
||||
g_object_set_property (priv->object, p_name, value);
|
||||
p_value = clutter_interval_peek_final_value (interval);
|
||||
g_object_set_property (priv->object, p_name, p_value);
|
||||
}
|
||||
|
||||
/* at this point, if this animation was created by clutter_actor_animate()
|
||||
|
Loading…
Reference in New Issue
Block a user