Fix a dumb typo in last commit.

This commit is contained in:
Emmanuele Bassi 2007-03-25 22:37:21 +00:00
parent 6c7b0830b5
commit f741107fcb
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-03-26 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-timeline.c: Fix last commit.
2007-03-25 Emmanuele Bassi <ebassi@openedhand.com> 2007-03-25 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-timeline.c: Slightly lower the proiority * clutter/clutter-timeline.c: Slightly lower the proiority

View File

@ -357,7 +357,7 @@ clutter_timeline_start (ClutterTimeline *timeline)
priv = timeline->priv; priv = timeline->priv;
if (!priv->timeout_id) if (!priv->timeout_id)
priv->timeout_id = g_timeout_add_full (G_PRIORITY_DEFAULT + 20 priv->timeout_id = g_timeout_add_full (G_PRIORITY_DEFAULT + 20,
FPS_TO_INTERVAL (priv->fps), FPS_TO_INTERVAL (priv->fps),
timeline_timeout_func, timeline_timeout_func,
timeline, timeline,