# HG changeset patch # User Nathan Walp # Date 1093477516 0 # Node ID d6cf01e43b8618855c0237cc3e514926688cb0c9 # Parent 943e272c502a086939d30734a1db7845b4639741 [gaim-migrate @ 10755] this seems even more hackish, but it works committer: Tailor Script diff -r 943e272c502a -r d6cf01e43b86 src/gtkconv.c --- a/src/gtkconv.c Wed Aug 25 23:24:11 2004 +0000 +++ b/src/gtkconv.c Wed Aug 25 23:45:16 2004 +0000 @@ -5754,7 +5754,8 @@ g_object_unref(G_OBJECT(bm)); button_type = gaim_prefs_get_int("/gaim/gtk/conversations/button_type"); - gtk_widget_size_request(gtkconv->bbox, &requisition); + /* the button seems to get its size before the box, so... */ + gtk_widget_size_request(gtkconv->send, &requisition); if (button_type == GAIM_BUTTON_NONE || requisition.height * 1.5 < scale_height) { gtk_box_pack_start(GTK_BOX(gtkconv->lower_hbox), vbox, FALSE, FALSE, 0); /* gtk_box_reorder_child(GTK_BOX(gtkconv->lower_hbox), vbox, 0); */