mirror of
https://github.com/brl/mutter.git
synced 2024-11-28 19:10:43 -05:00
Compositor: remove the hidden group
It is unused and always empty. https://bugzilla.gnome.org/show_bug.cgi?id=688210
This commit is contained in:
parent
3e723caabd
commit
5a83ef71c9
@ -40,7 +40,6 @@ struct _MetaCompScreen
|
|||||||
|
|
||||||
ClutterActor *stage, *window_group, *overlay_group;
|
ClutterActor *stage, *window_group, *overlay_group;
|
||||||
ClutterActor *background_actor;
|
ClutterActor *background_actor;
|
||||||
ClutterActor *hidden_group;
|
|
||||||
GList *windows;
|
GList *windows;
|
||||||
GHashTable *windows_by_xid;
|
GHashTable *windows_by_xid;
|
||||||
Window output;
|
Window output;
|
||||||
|
@ -575,7 +575,6 @@ meta_compositor_manage_screen (MetaCompositor *compositor,
|
|||||||
info->window_group = meta_window_group_new (screen);
|
info->window_group = meta_window_group_new (screen);
|
||||||
info->background_actor = meta_background_actor_new_for_screen (screen);
|
info->background_actor = meta_background_actor_new_for_screen (screen);
|
||||||
info->overlay_group = clutter_group_new ();
|
info->overlay_group = clutter_group_new ();
|
||||||
info->hidden_group = clutter_group_new ();
|
|
||||||
|
|
||||||
clutter_container_add (CLUTTER_CONTAINER (info->window_group),
|
clutter_container_add (CLUTTER_CONTAINER (info->window_group),
|
||||||
info->background_actor,
|
info->background_actor,
|
||||||
@ -584,11 +583,8 @@ meta_compositor_manage_screen (MetaCompositor *compositor,
|
|||||||
clutter_container_add (CLUTTER_CONTAINER (info->stage),
|
clutter_container_add (CLUTTER_CONTAINER (info->stage),
|
||||||
info->window_group,
|
info->window_group,
|
||||||
info->overlay_group,
|
info->overlay_group,
|
||||||
info->hidden_group,
|
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
clutter_actor_hide (info->hidden_group);
|
|
||||||
|
|
||||||
info->plugin_mgr = meta_plugin_manager_new (screen);
|
info->plugin_mgr = meta_plugin_manager_new (screen);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user