mirror of
https://github.com/brl/mutter.git
synced 2024-11-08 23:16:20 -05:00
window-actor: Make the meta-window property construct-only
We don't deal with setting this property at all, and it's unlikely to come up in future settings, so just don't allow setting it at all. https://bugzilla.gnome.org/show_bug.cgi?id=678989
This commit is contained in:
parent
734deeb17c
commit
8a76383eca
@ -222,7 +222,7 @@ meta_window_actor_class_init (MetaWindowActorClass *klass)
|
||||
"MetaWindow",
|
||||
"The displayed MetaWindow",
|
||||
META_TYPE_WINDOW,
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT);
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY);
|
||||
|
||||
g_object_class_install_property (object_class,
|
||||
PROP_META_WINDOW,
|
||||
@ -455,11 +455,7 @@ meta_window_actor_set_property (GObject *object,
|
||||
switch (prop_id)
|
||||
{
|
||||
case PROP_META_WINDOW:
|
||||
{
|
||||
if (priv->window)
|
||||
g_object_unref (priv->window);
|
||||
priv->window = g_value_dup_object (value);
|
||||
}
|
||||
priv->window = g_value_dup_object (value);
|
||||
break;
|
||||
case PROP_NO_SHADOW:
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user