diff --git a/clutter/clutter-main.h b/clutter/clutter-main.h index 194faec6f..d36f8f16f 100644 --- a/clutter/clutter-main.h +++ b/clutter/clutter-main.h @@ -66,20 +66,15 @@ GQuark clutter_init_error_quark (void); /** * CLUTTER_PRIORITY_REDRAW: * - * Priority of the redraws. + * Priority of the redraws. This is chosen to be lower than the GTK+ + * redraw and resize priorities, because in application with both + * GTK+ and Clutter it's more likely that the Clutter part will be + * continually animating (and thus able to starve GTK+) than + * vice-versa. * * Since: 0.8 */ -#define CLUTTER_PRIORITY_REDRAW (G_PRIORITY_HIGH_IDLE + 20) - -/** - * CLUTTER_PRIORITY_TIMELINE: - * - * Priority of the timelines. - * - * Since: 0.8 - */ -#define CLUTTER_PRIORITY_TIMELINE (G_PRIORITY_DEFAULT + 30) +#define CLUTTER_PRIORITY_REDRAW (G_PRIORITY_HIGH_IDLE + 50) /* Initialisation */ void clutter_base_init (void);