Fixed broken g_object_set_property() call.

Fixing this broken stuff, so it is disabled.
This commit is contained in:
Tomas Frydrych 2008-11-07 10:13:40 +00:00
parent 123f4df31b
commit dcd350dd90

View File

@ -1954,8 +1954,14 @@ clutter_cmp_manage_screen (MetaCompositor *compositor,
KeyPressMask | KeyReleaseMask);
info->window_group = clutter_group_new ();
g_object_set_property (G_OBJECT (info->window_group),
"show-on-set-parent", FALSE);
#if 0
/*
* 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->hidden_group = clutter_group_new ();