Mercurial > pidgin
changeset 9767:c31e64c2bd85
[gaim-migrate @ 10635]
Make the spacing on the "I'm Back!" button not suck. Thanks to
Kevin for pointing this out. I caused this in my changes to the
conversation buttons on Saturday, I think it was. Maybe yesterday.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Mon, 16 Aug 2004 21:52:52 +0000 |
parents | 14d997822897 |
children | ea1f457b7fef |
files | src/gtkutils.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gtkutils.c Mon Aug 16 04:22:21 2004 +0000 +++ b/src/gtkutils.c Mon Aug 16 21:52:52 2004 +0000 @@ -246,7 +246,7 @@ if (icon) { gtk_box_pack_start_defaults(GTK_BOX(bbox), ibox); image = gtk_image_new_from_stock(icon, GTK_ICON_SIZE_BUTTON); - gtk_box_pack_end(GTK_BOX(ibox), image, TRUE, TRUE, 0); + gtk_box_pack_end(GTK_BOX(ibox), image, FALSE, TRUE, 0); } if (text) { @@ -254,7 +254,7 @@ label = gtk_label_new(NULL); gtk_label_set_text_with_mnemonic(GTK_LABEL(label), text); gtk_label_set_mnemonic_widget(GTK_LABEL(label), button); - gtk_box_pack_start(GTK_BOX(lbox), label, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(lbox), label, FALSE, TRUE, 0); gaim_set_accessible_label (button, label); }