]> Pileus Git - ~andy/gtk/commitdiff
Change defaults of child properties "expand" and "homogeneous" from TRUE
authorJan Arne Petersen <jpetersen@jpetersen.org>
Sat, 24 May 2008 19:03:33 +0000 (19:03 +0000)
committerJan Arne Petersen <jap@src.gnome.org>
Sat, 24 May 2008 19:03:33 +0000 (19:03 +0000)
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

ChangeLog
gtk/gtktoolbar.c

index 59ee0a90aab19638eb0ef7155503dcbcc724cffd..e434dab7bf41c9146e551321fe2091368c9f6b6d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,14 @@
+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).
+
 2008-05-24  Jan Arne Petersen  <jpetersen@jpetersen.org>
 
        * gtk/gtkfilechooserdefault.c: (location_toggle_popup_handler): Don't
        try to toggle the visibility of the location entry field in search and
-       recent mode (#526422)
+       recent mode (#526422).
 
 2008-05-24  Jan Arne Petersen  <jpetersen@jpetersen.org>
 
index a9ab48a940e91a4b363b0975bf31d2e58b6194da..6019d36cd373c85f4f292a4ef7a243cf29d252d1 100644 (file)
@@ -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 */