From 20ce1e77d9e738b7e08d9699da0cca44ae0b36c8 Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Fri, 31 Oct 2008 18:59:04 -0400 Subject: [PATCH] Don't show_all() the stage and overlay group at initialization. Calling clutter_actor_show_all() on the stage and overlay_group breaks the ability for plugins to create initially hidden actors. Call clutter_actor_show() instead. --- src/compositor/mutter/compositor-mutter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compositor/mutter/compositor-mutter.c b/src/compositor/mutter/compositor-mutter.c index 4f51fc001..fa9d1a9c6 100644 --- a/src/compositor/mutter/compositor-mutter.c +++ b/src/compositor/mutter/compositor-mutter.c @@ -2120,8 +2120,8 @@ clutter_cmp_manage_screen (MetaCompositor *compositor, info->plugin_mgr = mutter_plugin_manager_new (screen); - clutter_actor_show_all (info->stage); - clutter_actor_show_all (info->overlay_group); + clutter_actor_show (info->stage); + clutter_actor_show (info->overlay_group); #endif }