diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2008-06-13 03:21:09 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2008-06-13 03:21:09 +0000 |
commit | 1dc476954fc2731a418dcaeb650a749c2b595794 (patch) | |
tree | 9a6933cdd8bb91929b6baf9a3e3d4ce5a327c126 /gtk/gtktoolbutton.c | |
parent | acb1e5323fc65f68892c2f88145274601f16b00e (diff) | |
download | gtk+-1dc476954fc2731a418dcaeb650a749c2b595794.tar.gz |
Improve appearance of "both vertical" mode toolbuttons. Patch by Peter
* gtk/gtktoolbutton.c (gtk_tool_button_construct_contents):
Improve appearance of "both vertical" mode toolbuttons.
Patch by Peter Johanson
svn path=/trunk/; revision=20365
Diffstat (limited to 'gtk/gtktoolbutton.c')
-rw-r--r-- | gtk/gtktoolbutton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktoolbutton.c b/gtk/gtktoolbutton.c index a38da3ab31..21d6011880 100644 --- a/gtk/gtktoolbutton.c +++ b/gtk/gtktoolbutton.c @@ -433,7 +433,7 @@ gtk_tool_button_construct_contents (GtkToolItem *tool_item) box = gtk_vbox_new (FALSE, icon_spacing); if (icon) gtk_box_pack_start (GTK_BOX (box), icon, TRUE, TRUE, 0); - gtk_box_pack_start (GTK_BOX (box), label, FALSE, TRUE, 0); + gtk_box_pack_end (GTK_BOX (box), label, FALSE, TRUE, 0); gtk_container_add (GTK_CONTAINER (button->priv->button), box); break; |