diff --git a/ChangeLog b/ChangeLog index 15ffa7312..f242ccd24 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-01-31 Emmanuele Bassi + + * 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 * clutter/clutter-actor.c: diff --git a/clutter/clutter-timeline.c b/clutter/clutter-timeline.c index da998ea40..218c0d1fc 100644 --- a/clutter/clutter-timeline.c +++ b/clutter/clutter-timeline.c @@ -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;