summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2008-06-13 03:21:09 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2008-06-13 03:21:09 +0000
commit1dc476954fc2731a418dcaeb650a749c2b595794 (patch)
tree9a6933cdd8bb91929b6baf9a3e3d4ce5a327c126
parentacb1e5323fc65f68892c2f88145274601f16b00e (diff)
downloadgdk-pixbuf-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
-rw-r--r--ChangeLog9
-rw-r--r--gtk/gtktoolbutton.c2
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1ac68d87a..56f6e8462 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
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
* gtk/gtkvolumebutton.c: Set accessibility descriptions.
diff --git a/gtk/gtktoolbutton.c b/gtk/gtktoolbutton.c
index a38da3ab3..21d601188 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;