forked from AuroraMiddleware/gtk
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
This commit is contained in:
parent
adcf2fd3f3
commit
f9d2caa868
@ -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>
|
||||
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user