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.
This commit is contained in:
parent
15daecacdc
commit
20ce1e77d9
@ -2120,8 +2120,8 @@ clutter_cmp_manage_screen (MetaCompositor *compositor,
|
|||||||
info->plugin_mgr =
|
info->plugin_mgr =
|
||||||
mutter_plugin_manager_new (screen);
|
mutter_plugin_manager_new (screen);
|
||||||
|
|
||||||
clutter_actor_show_all (info->stage);
|
clutter_actor_show (info->stage);
|
||||||
clutter_actor_show_all (info->overlay_group);
|
clutter_actor_show (info->overlay_group);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user