mirror of
https://github.com/brl/mutter.git
synced 2025-04-02 00:23:49 +00:00
Fixed broken g_object_set_property() call.
Fixing this broken stuff, so it is disabled.
This commit is contained in:
parent
123f4df31b
commit
dcd350dd90
@ -1954,8 +1954,14 @@ clutter_cmp_manage_screen (MetaCompositor *compositor,
|
|||||||
KeyPressMask | KeyReleaseMask);
|
KeyPressMask | KeyReleaseMask);
|
||||||
|
|
||||||
info->window_group = clutter_group_new ();
|
info->window_group = clutter_group_new ();
|
||||||
g_object_set_property (G_OBJECT (info->window_group),
|
#if 0
|
||||||
"show-on-set-parent", FALSE);
|
/*
|
||||||
|
* Fixed the property setting (g_object_set_property needs GValue,
|
||||||
|
* but setting this breaks everything, so it is disabled.
|
||||||
|
*/
|
||||||
|
g_object_set (G_OBJECT (info->window_group),
|
||||||
|
"show-on-set-parent", FALSE, NULL);
|
||||||
|
#endif
|
||||||
info->overlay_group = clutter_group_new ();
|
info->overlay_group = clutter_group_new ();
|
||||||
info->hidden_group = clutter_group_new ();
|
info->hidden_group = clutter_group_new ();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user