2008-01-31 Emmanuele Bassi <ebassi@sprite>

* clutter/clutter-timeline.c (clutter_timeline_skip): Don't
	add the frames outside the direction check. (thanks to benoar
	on clutter-list for spotting it)
This commit is contained in:
Emmanuele Bassi 2008-01-31 21:15:54 +00:00
parent 81612d44e7
commit adf89a2e17
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2008-01-31 Emmanuele Bassi <ebassi@sprite>
* clutter/clutter-timeline.c (clutter_timeline_skip): Don't
add the frames outside the direction check. (thanks to benoar
on clutter-list for spotting it)
2007-01-31 Tomas Frydrych <tf@openedhand.com>
* clutter/clutter-actor.c:

View File

@ -779,8 +779,6 @@ clutter_timeline_skip (ClutterTimeline *timeline,
priv = timeline->priv;
priv->current_frame_num += n_frames;
if (priv->direction == CLUTTER_TIMELINE_FORWARD)
{
priv->current_frame_num += n_frames;