diff options
author | Jan Arne Petersen <jpetersen@jpetersen.org> | 2008-05-24 19:03:33 +0000 |
---|---|---|
committer | Jan Arne Petersen <jap@src.gnome.org> | 2008-05-24 19:03:33 +0000 |
commit | f9d2caa8683695eabb5d905c4b11e107408e7d86 (patch) | |
tree | 45e984a9844e6a757ca420d122f435d3157aa803 /gtk/gtktoolbar.c | |
parent | adcf2fd3f3fa1cfb375ad0e15a429849745973a0 (diff) | |
download | gtk+-f9d2caa8683695eabb5d905c4b11e107408e7d86.tar.gz |
Change defaults of child properties "expand" and "homogeneous" from TRUE
2008-05-24 Jan Arne Petersen <jpetersen@jpetersen.org>
* gtk/gtktoolbar.c: (gtk_toolbar_class_init): Change defaults of child
properties "expand" and "homogeneous" from TRUE to FALSE (as they are
used in GtkToolItem) (#532787).
svn path=/trunk/; revision=20139
Diffstat (limited to 'gtk/gtktoolbar.c')
-rw-r--r-- | gtk/gtktoolbar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtktoolbar.c b/gtk/gtktoolbar.c index a9ab48a940..6019d36cd3 100644 --- a/gtk/gtktoolbar.c +++ b/gtk/gtktoolbar.c @@ -573,7 +573,7 @@ gtk_toolbar_class_init (GtkToolbarClass *klass) g_param_spec_boolean ("expand", P_("Expand"), P_("Whether the item should receive extra space when the toolbar grows"), - TRUE, + FALSE, GTK_PARAM_READWRITE)); gtk_container_class_install_child_property (container_class, @@ -581,7 +581,7 @@ gtk_toolbar_class_init (GtkToolbarClass *klass) g_param_spec_boolean ("homogeneous", P_("Homogeneous"), P_("Whether the item should be the same size as other homogeneous items"), - TRUE, + FALSE, GTK_PARAM_READWRITE)); /* style properties */ |