From: <sea...@us...> - 2006-12-06 00:57:34
|
Revision: 17898 http://svn.sourceforge.net/gaim/?rev=17898&view=rev Author: seanegan Date: 2006-12-05 16:57:19 -0800 (Tue, 05 Dec 2006) Log Message: ----------- force statusbox up to 30px all the time Modified Paths: -------------- trunk/gtk/gtkstatusbox.c Modified: trunk/gtk/gtkstatusbox.c =================================================================== --- trunk/gtk/gtkstatusbox.c 2006-12-06 00:39:27 UTC (rev 17897) +++ trunk/gtk/gtkstatusbox.c 2006-12-06 00:57:19 UTC (rev 17898) @@ -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; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |