# HG changeset patch # User Mark Doliner # Date 1092693172 0 # Node ID c31e64c2bd85ff9af2db3f15026e609f9c5e5fde # Parent 14d9978228974761926e4b5b4af6f28651c21be8 [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 diff -r 14d997822897 -r c31e64c2bd85 src/gtkutils.c --- 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); }