diff pidgin/gtkconv.c @ 19306:16cad7ba399c

Set size request on infopane's hbox instead of hbox itself. This way, when we hide the hbox to edit, the pane remains 32px tall
author Sean Egan <seanegan@gmail.com>
date Fri, 17 Aug 2007 18:09:54 +0000
parents 758b71dcd354
children 03ff8d52ab2e
line wrap: on
line diff
--- a/pidgin/gtkconv.c	Fri Aug 17 14:25:59 2007 +0000
+++ b/pidgin/gtkconv.c	Fri Aug 17 18:09:54 2007 +0000
@@ -4545,7 +4545,7 @@
 	path = gtk_tree_path_new_from_string("0");
 	gtk_cell_view_set_displayed_row(GTK_CELL_VIEW(gtkconv->infopane), path);
 	gtk_tree_path_free(path);
-	gtk_widget_set_size_request(gtkconv->infopane, -1, 32);
+	gtk_widget_set_size_request(gtkconv->infopane_hbox, -1, 32);
 	gtk_widget_show(gtkconv->infopane);
 
 	rend = gtk_cell_renderer_pixbuf_new();