changeset 17731:5d52c1763eb9

Don't set the headline box's size request on resizing the window, as this may push up the blist's size request, causing it to get infinitely larger. I want to shut off allow_shrink on the blist window, which would make this resizing hack completely unnecessary. Fixes #307
author Sean Egan <seanegan@gmail.com>
date Wed, 06 Jun 2007 00:17:06 +0000
parents 647bfc2b2a7b
children 264d5439849b
files pidgin/gtkblist.c
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/pidgin/gtkblist.c	Tue Jun 05 12:48:22 2007 +0000
+++ b/pidgin/gtkblist.c	Wed Jun 06 00:17:06 2007 +0000
@@ -266,8 +266,6 @@
 	purple_prefs_set_int(PIDGIN_PREFS_ROOT "/blist/width",  event->width);
 	purple_prefs_set_int(PIDGIN_PREFS_ROOT "/blist/height", event->height);
 
-	gtk_widget_set_size_request(gtkblist->headline_label,
-				    purple_prefs_get_int(PIDGIN_PREFS_ROOT "/blist/width")-25,-1);
 	/* continue to handle event normally */
 	return FALSE;
 }