changeset 20041:e98404d74a24

Pack smileys into smiley box without expand=FALSE. Fixes #92
author Sean Egan <seanegan@gmail.com>
date Fri, 14 Sep 2007 21:29:53 +0000
parents b34d0ba5e225
children d1d847810985
files pidgin/gtkimhtmltoolbar.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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;