summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--src/compositor/compositor.c6
2 files changed, 3 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 6fe0c188c..9c45779d9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -75,7 +75,7 @@ MUTTER_PC_MODULES="
cairo >= 1.10.0
gsettings-desktop-schemas >= 3.7.3
xcomposite >= 0.2 xfixes xrender xdamage xi >= 1.6.0
- $CLUTTER_PACKAGE >= 1.15.90
+ $CLUTTER_PACKAGE >= 1.19.5
cogl-1.0 >= 1.17.1
upower-glib >= 0.99.0
gnome-desktop-3.0
diff --git a/src/compositor/compositor.c b/src/compositor/compositor.c
index 25b677ea0..db7e24503 100644
--- a/src/compositor/compositor.c
+++ b/src/compositor/compositor.c
@@ -668,10 +668,8 @@ meta_compositor_manage_screen (MetaCompositor *compositor,
info->stage = clutter_stage_new ();
- clutter_stage_set_paint_callback (CLUTTER_STAGE (info->stage),
- after_stage_paint,
- info,
- NULL);
+ g_signal_connect (CLUTTER_STAGE (info->stage), "after-paint",
+ G_CALLBACK (after_stage_paint), info);
clutter_stage_set_sync_delay (CLUTTER_STAGE (info->stage), META_SYNC_DELAY);