changeset 15112:072987463f90

[gaim-migrate @ 17898] force statusbox up to 30px all the time committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Wed, 06 Dec 2006 00:57:19 +0000
parents cde909b9eb4b
children 4a8c368df4ea
files gtk/gtkstatusbox.c
diffstat 1 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/gtk/gtkstatusbox.c	Wed Dec 06 00:39:27 2006 +0000
+++ b/gtk/gtkstatusbox.c	Wed Dec 06 00:57:19 2006 +0000
@@ -1622,8 +1622,7 @@
 	gtk_widget_size_request(GTK_GAIM_STATUS_BOX(widget)->toggle_button, requisition);
 
 	/* Make this icon the same size as other buddy icons in the list; unless it already wants to be bigger */
-	if ( gaim_prefs_get_bool("/gaim/gtk/blist/show_buddy_icons"))
-		requisition->height = MAX(requisition->height, 30 + (border_width*2));
+	requisition->height = MAX(requisition->height, 30 + (border_width*2));
 
 	/* If the gtkimhtml is visible, then add some additional padding */
 	gtk_widget_size_request(GTK_GAIM_STATUS_BOX(widget)->vbox, &box_req);
@@ -1685,8 +1684,7 @@
 	gtk_widget_size_request(status_box->toggle_button, &req);
 	/* Make this icon the same size as other buddy icons in the list; unless it already wants to be bigger */
 
-	if ( gaim_prefs_get_bool("/gaim/gtk/blist/show_buddy_icons"))
-		req.height = MAX(req.height, 30 + (border_width*2));
+	req.height = MAX(req.height, 30 + (border_width*2));
 
 	box_alc = *allocation;