# HG changeset patch # User Sean Egan # Date 1165366639 0 # Node ID 072987463f90001254f2c939d7db5b61ae479428 # Parent cde909b9eb4bbb215b2a33e654937909a3727c0e [gaim-migrate @ 17898] force statusbox up to 30px all the time committer: Tailor Script diff -r cde909b9eb4b -r 072987463f90 gtk/gtkstatusbox.c --- 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;