summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-07-22 16:55:15 -0400
committerMatthias Clasen <mclasen@redhat.com>2021-07-22 16:55:15 -0400
commit4c41ef8de39fa1c7c30901e19fcaa2b6397a4c43 (patch)
tree14e9812d152d506f5a1ba8710aa79fe5b97aafbc
parent7aec3b0fa183a199a94514c8d56e5f698e05f8e3 (diff)
downloadgtk+-4c41ef8de39fa1c7c30901e19fcaa2b6397a4c43.tar.gz
stack: GtkStackPage:name is not construct-only
We have a setter for this property, so we clearly weren't serious when we marked it as construct-only. Fixes: #4109
-rw-r--r--gtk/gtkstack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkstack.c b/gtk/gtkstack.c
index d53eb0653a..dffc603452 100644
--- a/gtk/gtkstack.c
+++ b/gtk/gtkstack.c
@@ -428,7 +428,7 @@ gtk_stack_page_class_init (GtkStackPageClass *class)
P_("Name"),
P_("The name of the child page"),
NULL,
- GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY);
+ GTK_PARAM_READWRITE);
/**
* GtkStackPage:title: (attributes org.gtk.Property.get=gtk_stack_page_get_title org.gtk.Property.set=gtk_stack_page_set_title)