diff options
author | Christian Hergert <chergert@redhat.com> | 2015-11-03 14:36:54 -0800 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2015-11-09 08:47:54 -0500 |
commit | 80ae3fe6f2f5f747b04330b7c8a11c6b531938db (patch) | |
tree | 609dae18f21c37d1af254c618ed105395bc27828 /gtk | |
parent | 0358fd0b337356a2a1edeafc1ed755d6566582db (diff) | |
download | gtk+-80ae3fe6f2f5f747b04330b7c8a11c6b531938db.tar.gz |
headerbar: remove G_PARAM_CONSTRUCT from custom-title
This fixes the ability to sublcass GtkHeaderBar from a UI template which
contains a custom <child type="title"> element.
https://bugzilla.gnome.org/show_bug.cgi?id=757544
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkheaderbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkheaderbar.c b/gtk/gtkheaderbar.c index 042bb42c5d..555d513bbb 100644 --- a/gtk/gtkheaderbar.c +++ b/gtk/gtkheaderbar.c @@ -1897,7 +1897,7 @@ gtk_header_bar_class_init (GtkHeaderBarClass *class) P_("Custom Title"), P_("Custom title widget to display"), GTK_TYPE_WIDGET, - G_PARAM_READWRITE|G_PARAM_CONSTRUCT|G_PARAM_STATIC_STRINGS); + G_PARAM_READWRITE|G_PARAM_STATIC_STRINGS); header_bar_props[PROP_SPACING] = g_param_spec_int ("spacing", |