From 7099d251c664752ef72c076d2b9cc45b70d58624 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 9 Jun 2009 16:28:25 +0100 Subject: [PATCH] Run the repaint functions inside the redraw cycle Now that every redraw is performed within the master clock we need to run the repaint functions inside it. --- clutter/clutter-master-clock.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clutter/clutter-master-clock.c b/clutter/clutter-master-clock.c index 08a5c744f..661a4987a 100644 --- a/clutter/clutter-master-clock.c +++ b/clutter/clutter-master-clock.c @@ -255,7 +255,8 @@ clutter_clock_dispatch (GSource *source, for (l = stages; l != NULL; l = l->next) _clutter_stage_process_queued_events (l->data); - _clutter_master_clock_advance (master_clock); + _clutter_master_clock_advance (master_clock); + _clutter_run_repaint_functions (); /* Update any stage that needs redraw/relayout after the clock * is advanced.