# HG changeset patch # User Sean Egan # Date 1189805393 0 # Node ID e98404d74a24ebd8bec751ff932e6474bf33d468 # Parent b34d0ba5e22518156647422eb4bc424022fa46ae Pack smileys into smiley box without expand=FALSE. Fixes #92 diff -r b34d0ba5e225 -r e98404d74a24 pidgin/gtkimhtmltoolbar.c --- a/pidgin/gtkimhtmltoolbar.c Fri Sep 14 18:26:20 2007 +0000 +++ b/pidgin/gtkimhtmltoolbar.c Fri Sep 14 21:29:53 2007 +0000 @@ -739,11 +739,11 @@ while (it != NULL) { it_tmp = it; - gtk_box_pack_start(GTK_BOX(line), it->button, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(line), it->button, FALSE, FALSE, 0); gtk_widget_show(it->button); line_width += it->width; if (line_width >= max_line_width) { - gtk_box_pack_start(GTK_BOX(smiley_table), line, FALSE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(smiley_table), line, FALSE, FALSE, 0); line = gtk_hbox_new(FALSE, 0); line_width = 0; col = 0;