diff options
author | Soeren Sandmann <sandmann@daimi.au.dk> | 2004-02-16 19:16:03 +0000 |
---|---|---|
committer | Søren Sandmann Pedersen <ssp@src.gnome.org> | 2004-02-16 19:16:03 +0000 |
commit | 97ff0f48a48875d24d4422e02a67440118c6c3a1 (patch) | |
tree | c9ff66f7f8fbfd749a7cfd6f3576c6576cff5988 /gtk/gtktoolbar.c | |
parent | b3115437ddf7aadeb7f637cd73a7753953608c6b (diff) | |
download | gtk+-97ff0f48a48875d24d4422e02a67440118c6c3a1.tar.gz |
Call gtk_tool_item_set_expand(), not gtk_tool_item_set_homogeneous() in
Mon Feb 16 18:26:39 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtktoolbar.c (gtk_toolbar_set_child_property): Call
gtk_tool_item_set_expand(), not gtk_tool_item_set_homogeneous()
in the CHILD_PROP_EXPAND branch. (#134545, Damon Chaplin)
Diffstat (limited to 'gtk/gtktoolbar.c')
-rw-r--r-- | gtk/gtktoolbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktoolbar.c b/gtk/gtktoolbar.c index 3ce9fc704d..f522924a80 100644 --- a/gtk/gtktoolbar.c +++ b/gtk/gtktoolbar.c @@ -2193,7 +2193,7 @@ gtk_toolbar_set_child_property (GtkContainer *container, break; case CHILD_PROP_EXPAND: - gtk_tool_item_set_homogeneous (GTK_TOOL_ITEM (child), g_value_get_boolean (value)); + gtk_tool_item_set_expand (GTK_TOOL_ITEM (child), g_value_get_boolean (value)); break; default: |