]> Pileus Git - ~andy/gtk/commitdiff
Improve appearance of "both vertical" mode toolbuttons. Patch by Peter
authorMatthias Clasen <matthiasc@src.gnome.org>
Fri, 13 Jun 2008 03:21:09 +0000 (03:21 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 13 Jun 2008 03:21:09 +0000 (03:21 +0000)
        * gtk/gtktoolbutton.c (gtk_tool_button_construct_contents):
        Improve appearance of "both vertical" mode toolbuttons.
        Patch by Peter Johanson

svn path=/trunk/; revision=20365

ChangeLog
gtk/gtktoolbutton.c

index 1ac68d87af5e8c850af062c780cc9beaa475ed96..56f6e8462fd2f0957182509fbe81767fbdc1caf5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2008-06-12  Matthias Clasen  <mclasen@redhat.com>
+
+       Bug 524222 – GtkToolbar with mix of buttons with and without 
+       icons looks "bad"
+
+       * gtk/gtktoolbutton.c (gtk_tool_button_construct_contents):
+       Improve appearance of "both vertical" mode toolbuttons.
+       Patch by Peter Johanson
+
 2008-06-12  Matthias Clasen  <mclasen@redhat.com>
 
        Bug 519092 – Add accessibility support to GtkVolumeButton
index a38da3ab3149dedf6e15f4b303f4d5a012461e57..21d60118804e72d5933560137fdcd0f697731e6f 100644 (file)
@@ -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;