diff --git a/ChangeLog b/ChangeLog index 82e5983c18..adb6039da4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Sep 5 14:15:17 2007 Tim Janik + + * gtk/gtknotebook.c (gtk_notebook_class_init): fix wrong default value + in ::tab-expand param spec constructor. + 2007-09-04 Fernando Herrera * gtk/gtkbuilder.c: (gtk_builder_finalize), diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index 48011b564a..7e32bac2bb 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -689,7 +689,7 @@ gtk_notebook_class_init (GtkNotebookClass *class) g_param_spec_boolean ("tab-expand", P_("Tab expand"), P_("Whether to expand the child's tab or not"), - TRUE, + FALSE, GTK_PARAM_READWRITE)); gtk_container_class_install_child_property (container_class, CHILD_PROP_TAB_FILL,