2008-01-31 Emmanuele Bassi <ebassi@sprite>
authorEmmanuele Bassi <ebassi@openedhand.com>
Thu, 31 Jan 2008 21:15:54 +0000 (21:15 +0000)
committerEmmanuele Bassi <ebassi@openedhand.com>
Thu, 31 Jan 2008 21:15:54 +0000 (21:15 +0000)
* 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)

ChangeLog
clutter/clutter-timeline.c

index 15ffa73..f242ccd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
index da998ea..218c0d1 100644 (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;