From 2410f74e2989e12ca652aa5cdcf346c9d28ac829 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Fri, 5 Dec 2008 17:44:12 +0000 Subject: [PATCH] 2008-12-05 Emmanuele Bassi Bug 1309 - clutter_timeline_new and clutter_timeline_set_speed have two standard of the fps limitation * clutter/clutter-timeline.c: (clutter_timeline_class_init): Set the maximum value of the :fps property to be G_MAXUINT. (Zhang Wei) --- ChangeLog | 9 +++++++++ clutter/clutter-timeline.c | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 32980ba9b..21897d0af 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2008-12-05 Emmanuele Bassi + + Bug 1309 - clutter_timeline_new and clutter_timeline_set_speed + have two standard of the fps limitation + + * clutter/clutter-timeline.c: + (clutter_timeline_class_init): Set the maximum value of the + :fps property to be G_MAXUINT. (Zhang Wei) + 2008-12-05 Neil Roberts * clutter/clutter-entry.c: Fix the 'Since' annotation in the diff --git a/clutter/clutter-timeline.c b/clutter/clutter-timeline.c index 3c9ac68ef..0841a3077 100644 --- a/clutter/clutter-timeline.c +++ b/clutter/clutter-timeline.c @@ -372,7 +372,7 @@ clutter_timeline_class_init (ClutterTimelineClass *klass) g_param_spec_uint ("fps", "Frames Per Second", "Timeline frames per second", - 1, 1000, + 1, G_MAXUINT, 60, CLUTTER_PARAM_READWRITE)); /**