# HG changeset patch # User Sean Egan # Date 1187374194 0 # Node ID 16cad7ba399cdfad52636392eca7983ade44ec29 # Parent 9e9f3442764c0c3d7a8d0edfcc60417d2d0193a3 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 diff -r 9e9f3442764c -r 16cad7ba399c pidgin/gtkconv.c --- 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();